diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 19:39:50 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 19:39:50 +0000 |
commit | d9616e5a763d1ab83ebac479e3b2222db5c3f87f (patch) | |
tree | a08c8f6002f7c1660aaa80e0f9cf61cd9d71151c /games/acm/files/patch-configure | |
parent | - Update to 1.9, announce message: (diff) |
Rename all 10,000 games/ patch-xy patches to reflect the files they modify.
Notes
Notes:
svn path=/head/; revision=363239
Diffstat (limited to 'games/acm/files/patch-configure')
-rw-r--r-- | games/acm/files/patch-configure | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/games/acm/files/patch-configure b/games/acm/files/patch-configure new file mode 100644 index 000000000000..79dd7dd1dce7 --- /dev/null +++ b/games/acm/files/patch-configure @@ -0,0 +1,60 @@ +*** configure~ Mon Aug 17 20:15:13 1998 +--- configure Mon Feb 1 18:42:53 1999 +*************** +*** 529,535 **** + + if test -d /usr/lib/games ; then +! OBVDIR="/usr/lib/games/acm" + else +! OBVDIR=\$\(prefix\)/games/acm + fi + +--- 529,535 ---- + + if test -d /usr/lib/games ; then +! OBVDIR="/usr/lib/games/acm/" + else +! OBVDIR=\$\(prefix\)/games/acm/ + fi + +*************** +*** 557,560 **** +--- 557,567 ---- + fi + ++ # *BSD ++ BSD=0 ++ if uname -s | grep BSD > /dev/null ; then ++ BSD=1 ++ OBVDIR=${prefix}/share/acm/ ++ fi ++ + # Extract the first word of "gcc", so it can be a program name with args. + set dummy gcc; ac_word=$2 +*************** +*** 769,773 **** + + +! if test "$LINUX" = "0" ; then + echo $ac_n "checking for elf_end in -lelf""... $ac_c" 1>&6 + echo "configure:774: checking for elf_end in -lelf" >&5 +--- 776,780 ---- + + +! if test "$LINUX" = "0" -a "$BSD" = "0"; then + echo $ac_n "checking for elf_end in -lelf""... $ac_c" 1>&6 + echo "configure:774: checking for elf_end in -lelf" >&5 +*************** +*** 1129,1133 **** + done + +! if test "$LINUX" = "0" ; then + ac_safe=`echo "elf.h" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for elf.h""... $ac_c" 1>&6 +--- 1136,1141 ---- + done + +! +! if test "$LINUX" = "0" -a "$BSD" = "0" ; then + ac_safe=`echo "elf.h" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for elf.h""... $ac_c" 1>&6 |