mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
9b34d9e6ac
PR: 19307 Submitted by: Trevor Johnson <trevor@jpj.net>
30 lines
692 B
Plaintext
30 lines
692 B
Plaintext
--- configure.orig Wed Sep 24 11:50:18 1997
|
|
+++ configure Thu Jun 15 10:25:16 2000
|
|
@@ -9,7 +9,7 @@
|
|
echo "what CPU has your box inside?"
|
|
echo "1) i386-compatible"
|
|
echo "2) none of the above"
|
|
-read cpu
|
|
+cpu=1
|
|
case $cpu in
|
|
1) echo "CPU=_g" > options ;
|
|
echo "CXXFLAGS += -Di386" >> options ;;
|
|
@@ -32,7 +32,7 @@
|
|
echo "3) Vesa (dos only)"
|
|
#echo "4) Win32 DirectDraw"
|
|
#echo "5) OS/2 DIVE"
|
|
-read gfx
|
|
+gfx=2
|
|
case $gfx in
|
|
1) echo "GFX=vga" >> options ;
|
|
echo "LIBS += -lvga" >> options ;;
|
|
@@ -68,7 +68,7 @@
|
|
echo "10) none of the above"
|
|
#echo "11) Win32"
|
|
#echo "12) OS/2"
|
|
-read snd
|
|
+snd=1
|
|
case $snd in
|
|
1) echo "CXXFLAGS += -DLINUX" >> options ;
|
|
echo "DRIVER=vox" >> options ;;
|