[54302] trunk/dports/devel/orbit/files/patch
toby at macports.org
toby at macports.org
Fri Jul 24 11:42:42 PDT 2009
Revision: 54302
http://trac.macports.org/changeset/54302
Author: toby at macports.org
Date: 2009-07-24 11:42:42 -0700 (Fri, 24 Jul 2009)
Log Message:
-----------
Remove patch that was darwin 6 only.
Removed Paths:
-------------
trunk/dports/devel/orbit/files/patch
Deleted: trunk/dports/devel/orbit/files/patch
===================================================================
--- trunk/dports/devel/orbit/files/patch 2009-07-24 18:42:27 UTC (rev 54301)
+++ trunk/dports/devel/orbit/files/patch 2009-07-24 18:42:42 UTC (rev 54302)
@@ -1,110 +0,0 @@
-diff -Naur Makefile.in Makefile.in
---- Makefile.in Thu Jun 6 20:34:34 2002
-+++ Makefile.in Wed Jul 31 21:53:18 2002
-@@ -99,7 +99,7 @@
-
- AUTOMAKE_OPTIONS = 1.3 # required version of automake.
-
--SUBDIRS = popt libIDL src test
-+SUBDIRS = popt libIDL src
-
- bin_SCRIPTS = orbit-config
-
-diff -Naur libIDL/configure libIDL/configure
---- libIDL/configure Thu Jun 6 20:27:28 2002
-+++ libIDL/configure Wed Jul 31 21:53:19 2002
-@@ -5435,7 +5435,7 @@
- # FIXME: Relying on posixy $() will cause problems for
- # cross-compilation, but unfortunately the echo tests do not
- # yet detect zsh echo's removal of \ escapes.
-- archive_cmds='$nonopt $(test "x$module" = xyes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags -install_name $rpath/$soname $verstring'
-+ archive_cmds='$nonopt $(test x$module = xyes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags $(test .$module != .yes && echo -install_name $rpath/$soname $tmp_verstring)'
- # We need to add '_' to the symbols in $export_symbols first
- #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
- hardcode_direct=yes
-diff -Naur libIDL/lexer.l libIDL/lexer.l
---- libIDL/lexer.l Thu Jun 6 20:07:29 2002
-+++ libIDL/lexer.l Wed Jul 31 21:53:19 2002
-@@ -201,15 +201,27 @@
- }
- <*>{whitespace} ;
- {b8_int} {
-+#ifdef __APPLE__
-+ yylval.integer = strtoq(yytext, NULL, 8);
-+#else
- sscanf (yytext, "%" IDL_LL "o", &yylval.integer);
-+#endif
- tokreturn (TOK_INTEGER);
- }
- {b10_uint} {
-+#ifdef __APPLE__
-+ yylval.integer = strtouq(yytext, NULL, 10);
-+#else
- sscanf (yytext, "%" IDL_LL "u", &yylval.integer);
-+#endif
- tokreturn (TOK_INTEGER);
- }
- {b16_int} {
-+#ifdef __APPLE__
-+ yylval.integer = strtoq(yytext + 2, NULL, 16);
-+#else
- sscanf (yytext + 2, "%" IDL_LL "x", &yylval.integer);
-+#endif
- tokreturn (TOK_INTEGER);
- }
- {fixed_lit} {
-diff -Naur libIDL/ltmain.sh libIDL/ltmain.sh
---- libIDL/ltmain.sh Thu Jun 6 20:27:24 2002
-+++ libIDL/ltmain.sh Wed Jul 31 21:53:19 2002
-@@ -2924,6 +2924,11 @@
- if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
- eval cmds=\"$archive_expsym_cmds\"
- else
-+ if test "x$verstring" = "x0.0"; then
-+ tmp_verstring=
-+ else
-+ tmp_verstring="$verstring"
-+ fi
- eval cmds=\"$archive_cmds\"
- fi
- save_ifs="$IFS"; IFS='~'
-diff -Naur ltmain.sh ltmain.sh
---- ltmain.sh Thu Jun 6 20:27:06 2002
-+++ ltmain.sh Wed Jul 31 21:53:19 2002
-@@ -2924,6 +2924,11 @@
- if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
- eval cmds=\"$archive_expsym_cmds\"
- else
-+ if test "x$verstring" = "x0.0"; then
-+ tmp_verstring=
-+ else
-+ tmp_verstring="$verstring"
-+ fi
- eval cmds=\"$archive_cmds\"
- fi
- save_ifs="$IFS"; IFS='~'
-diff -Naur popt/configure popt/configure
---- popt/configure Thu Jun 6 20:27:41 2002
-+++ popt/configure Wed Jul 31 21:53:19 2002
-@@ -5356,7 +5356,7 @@
- # FIXME: Relying on posixy $() will cause problems for
- # cross-compilation, but unfortunately the echo tests do not
- # yet detect zsh echo's removal of \ escapes.
-- archive_cmds='$nonopt $(test "x$module" = xyes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags -install_name $rpath/$soname $verstring'
-+ archive_cmds='$nonopt $(test x$module = xyes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags $(test .$module != .yes && echo -install_name $rpath/$soname $tmp_verstring)'
- # We need to add '_' to the symbols in $export_symbols first
- #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
- hardcode_direct=yes
-diff -Naur src/ORBitutil/orbit-os-config.h.in src/ORBitutil/orbit-os-config.h.in
---- src/ORBitutil/orbit-os-config.h.in Thu Jun 6 20:07:35 2002
-+++ src/ORBitutil/orbit-os-config.h.in Wed Jul 31 21:53:19 2002
-@@ -1,6 +1,8 @@
- #ifndef OS_CONFIG_H
- #define OS_CONFIG_H 1
-
--#define ORBIT_HAVE_ALLOCA_H @ORBIT_HAVE_ALLOCA_H@
-+#if @ORBIT_HAVE_ALLOCA_H@
-+#define ORBIT_HAVE_ALLOCA_H 1
-+#endif
-
- #endif
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20090724/442aaff6/attachment.html>
More information about the macports-changes
mailing list