rbcdio 0.02 → 0.03
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +34 -1
- data/INSTALL +26 -35
- data/Makefile.am +17 -15
- data/Makefile.in +54 -62
- data/NEWS +6 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/config.guess +49 -43
- data/config.sub +17 -7
- data/configure +64 -91
- data/configure.ac +3 -6
- data/doc/created.rid +1 -1
- data/example/audio.rb +13 -15
- data/example/cd-read.rb +13 -15
- data/example/cdchange.rb +14 -16
- data/example/device.rb +13 -14
- data/example/drivers.rb +13 -15
- data/example/eject.rb +13 -14
- data/example/iso1.rb +7 -8
- data/example/iso2.rb +7 -8
- data/example/iso3.rb +7 -8
- data/example/tracks.rb +13 -14
- data/ext/cdio/Makefile +24 -28
- data/ext/cdio/rubycdio_wrap.c +1263 -183
- data/ext/iso9660/Makefile +24 -28
- data/ext/iso9660/rubyiso9660_wrap.c +1050 -176
- data/install-sh +82 -266
- data/lib/cdio.rb +45 -46
- data/lib/iso9660.rb +13 -15
- data/missing +27 -34
- data/swig/audio.swg +12 -13
- data/swig/compat.swg +12 -13
- data/swig/device.swg +12 -14
- data/swig/device_const.swg +12 -13
- data/swig/disc.swg +12 -13
- data/swig/read.swg +12 -14
- data/swig/rubycdio.swg +12 -14
- data/swig/rubyiso9660.swg +12 -14
- data/swig/track.swg +12 -13
- data/swig/types.swg +12 -13
- metadata +47 -40
data/config.guess
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
|
5
5
|
# Inc.
|
6
6
|
|
7
|
-
timestamp='
|
7
|
+
timestamp='2007-07-22'
|
8
8
|
|
9
9
|
# This file is free software; you can redistribute it and/or modify it
|
10
10
|
# under the terms of the GNU General Public License as published by
|
@@ -139,16 +139,6 @@ UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
|
|
139
139
|
UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
|
140
140
|
UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
|
141
141
|
|
142
|
-
case "${UNAME_MACHINE}" in
|
143
|
-
i?86)
|
144
|
-
test -z "$VENDOR" && VENDOR=pc
|
145
|
-
;;
|
146
|
-
*)
|
147
|
-
test -z "$VENDOR" && VENDOR=unknown
|
148
|
-
;;
|
149
|
-
esac
|
150
|
-
test -f /etc/SuSE-release -o -f /.buildenv && VENDOR=suse
|
151
|
-
|
152
142
|
# Note: order is significant - the case branches are not exclusive.
|
153
143
|
|
154
144
|
case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
@@ -171,6 +161,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
|
171
161
|
arm*) machine=arm-unknown ;;
|
172
162
|
sh3el) machine=shl-unknown ;;
|
173
163
|
sh3eb) machine=sh-unknown ;;
|
164
|
+
sh5el) machine=sh5le-unknown ;;
|
174
165
|
*) machine=${UNAME_MACHINE_ARCH}-unknown ;;
|
175
166
|
esac
|
176
167
|
# The Operating System including object format, if it has switched
|
@@ -339,7 +330,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
|
|
339
330
|
sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
|
340
331
|
echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
|
341
332
|
exit ;;
|
342
|
-
i86pc:SunOS:5.*:*)
|
333
|
+
i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
|
343
334
|
echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
|
344
335
|
exit ;;
|
345
336
|
sun4*:SunOS:6*:*)
|
@@ -790,7 +781,7 @@ EOF
|
|
790
781
|
i*:CYGWIN*:*)
|
791
782
|
echo ${UNAME_MACHINE}-pc-cygwin
|
792
783
|
exit ;;
|
793
|
-
|
784
|
+
*:MINGW*:*)
|
794
785
|
echo ${UNAME_MACHINE}-pc-mingw32
|
795
786
|
exit ;;
|
796
787
|
i*:windows32*:*)
|
@@ -800,12 +791,15 @@ EOF
|
|
800
791
|
i*:PW*:*)
|
801
792
|
echo ${UNAME_MACHINE}-pc-pw32
|
802
793
|
exit ;;
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
794
|
+
*:Interix*:[3456]*)
|
795
|
+
case ${UNAME_MACHINE} in
|
796
|
+
x86)
|
797
|
+
echo i586-pc-interix${UNAME_RELEASE}
|
798
|
+
exit ;;
|
799
|
+
EM64T | authenticamd)
|
800
|
+
echo x86_64-unknown-interix${UNAME_RELEASE}
|
801
|
+
exit ;;
|
802
|
+
esac ;;
|
809
803
|
[345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
|
810
804
|
echo i${UNAME_MACHINE}-pc-mks
|
811
805
|
exit ;;
|
@@ -839,7 +833,7 @@ EOF
|
|
839
833
|
echo ${UNAME_MACHINE}-pc-minix
|
840
834
|
exit ;;
|
841
835
|
arm*:Linux:*:*)
|
842
|
-
echo ${UNAME_MACHINE}
|
836
|
+
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
843
837
|
exit ;;
|
844
838
|
avr32*:Linux:*:*)
|
845
839
|
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
@@ -851,16 +845,16 @@ EOF
|
|
851
845
|
echo crisv32-axis-linux-gnu
|
852
846
|
exit ;;
|
853
847
|
frv:Linux:*:*)
|
854
|
-
echo frv
|
848
|
+
echo frv-unknown-linux-gnu
|
855
849
|
exit ;;
|
856
850
|
ia64:Linux:*:*)
|
857
|
-
echo ${UNAME_MACHINE}
|
851
|
+
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
858
852
|
exit ;;
|
859
853
|
m32r*:Linux:*:*)
|
860
|
-
echo ${UNAME_MACHINE}
|
854
|
+
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
861
855
|
exit ;;
|
862
856
|
m68*:Linux:*:*)
|
863
|
-
echo ${UNAME_MACHINE}
|
857
|
+
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
864
858
|
exit ;;
|
865
859
|
mips:Linux:*:*)
|
866
860
|
eval $set_cc_for_build
|
@@ -883,7 +877,7 @@ EOF
|
|
883
877
|
s: ::g
|
884
878
|
p
|
885
879
|
}'`"
|
886
|
-
test x"${CPU}" != x && { echo "${CPU}
|
880
|
+
test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
|
887
881
|
;;
|
888
882
|
mips64:Linux:*:*)
|
889
883
|
eval $set_cc_for_build
|
@@ -906,16 +900,16 @@ EOF
|
|
906
900
|
s: ::g
|
907
901
|
p
|
908
902
|
}'`"
|
909
|
-
test x"${CPU}" != x && { echo "${CPU}
|
903
|
+
test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
|
910
904
|
;;
|
911
905
|
or32:Linux:*:*)
|
912
|
-
echo or32
|
906
|
+
echo or32-unknown-linux-gnu
|
913
907
|
exit ;;
|
914
908
|
ppc:Linux:*:*)
|
915
|
-
echo powerpc
|
909
|
+
echo powerpc-unknown-linux-gnu
|
916
910
|
exit ;;
|
917
911
|
ppc64:Linux:*:*)
|
918
|
-
echo powerpc64
|
912
|
+
echo powerpc64-unknown-linux-gnu
|
919
913
|
exit ;;
|
920
914
|
alpha:Linux:*:*)
|
921
915
|
case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
|
@@ -929,36 +923,39 @@ EOF
|
|
929
923
|
esac
|
930
924
|
objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
|
931
925
|
if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
|
932
|
-
echo ${UNAME_MACHINE}
|
926
|
+
echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
|
933
927
|
exit ;;
|
934
928
|
parisc:Linux:*:* | hppa:Linux:*:*)
|
935
929
|
# Look for CPU level
|
936
930
|
case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
|
937
|
-
PA7*) echo hppa1.1
|
938
|
-
PA8*) echo hppa2.0
|
939
|
-
*) echo hppa
|
931
|
+
PA7*) echo hppa1.1-unknown-linux-gnu ;;
|
932
|
+
PA8*) echo hppa2.0-unknown-linux-gnu ;;
|
933
|
+
*) echo hppa-unknown-linux-gnu ;;
|
940
934
|
esac
|
941
935
|
exit ;;
|
942
936
|
parisc64:Linux:*:* | hppa64:Linux:*:*)
|
943
|
-
echo hppa64
|
937
|
+
echo hppa64-unknown-linux-gnu
|
944
938
|
exit ;;
|
945
939
|
s390:Linux:*:* | s390x:Linux:*:*)
|
946
940
|
echo ${UNAME_MACHINE}-ibm-linux
|
947
941
|
exit ;;
|
948
942
|
sh64*:Linux:*:*)
|
949
|
-
echo ${UNAME_MACHINE}
|
943
|
+
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
950
944
|
exit ;;
|
951
945
|
sh*:Linux:*:*)
|
952
|
-
echo ${UNAME_MACHINE}
|
946
|
+
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
953
947
|
exit ;;
|
954
948
|
sparc:Linux:*:* | sparc64:Linux:*:*)
|
955
|
-
echo ${UNAME_MACHINE}
|
949
|
+
echo ${UNAME_MACHINE}-unknown-linux-gnu
|
956
950
|
exit ;;
|
957
951
|
vax:Linux:*:*)
|
958
952
|
echo ${UNAME_MACHINE}-dec-linux-gnu
|
959
953
|
exit ;;
|
960
954
|
x86_64:Linux:*:*)
|
961
|
-
echo x86_64
|
955
|
+
echo x86_64-unknown-linux-gnu
|
956
|
+
exit ;;
|
957
|
+
xtensa:Linux:*:*)
|
958
|
+
echo xtensa-unknown-linux-gnu
|
962
959
|
exit ;;
|
963
960
|
i*86:Linux:*:*)
|
964
961
|
# The BFD linker knows what the default object file format is, so
|
@@ -973,18 +970,18 @@ EOF
|
|
973
970
|
p'`
|
974
971
|
case "$ld_supported_targets" in
|
975
972
|
elf32-i386)
|
976
|
-
TENTATIVE="${UNAME_MACHINE}
|
973
|
+
TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
|
977
974
|
;;
|
978
975
|
a.out-i386-linux)
|
979
|
-
echo "${UNAME_MACHINE}
|
976
|
+
echo "${UNAME_MACHINE}-pc-linux-gnuaout"
|
980
977
|
exit ;;
|
981
978
|
coff-i386)
|
982
|
-
echo "${UNAME_MACHINE}
|
979
|
+
echo "${UNAME_MACHINE}-pc-linux-gnucoff"
|
983
980
|
exit ;;
|
984
981
|
"")
|
985
982
|
# Either a pre-BFD a.out linker (linux-gnuoldld) or
|
986
983
|
# one that does not give us useful --help.
|
987
|
-
echo "${UNAME_MACHINE}
|
984
|
+
echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
|
988
985
|
exit ;;
|
989
986
|
esac
|
990
987
|
# Determine whether the default compiler is a.out or elf
|
@@ -1018,7 +1015,7 @@ EOF
|
|
1018
1015
|
p
|
1019
1016
|
}'`"
|
1020
1017
|
test x"${LIBC}" != x && {
|
1021
|
-
echo "${UNAME_MACHINE}
|
1018
|
+
echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
|
1022
1019
|
exit
|
1023
1020
|
}
|
1024
1021
|
test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
|
@@ -1218,6 +1215,15 @@ EOF
|
|
1218
1215
|
SX-6:SUPER-UX:*:*)
|
1219
1216
|
echo sx6-nec-superux${UNAME_RELEASE}
|
1220
1217
|
exit ;;
|
1218
|
+
SX-7:SUPER-UX:*:*)
|
1219
|
+
echo sx7-nec-superux${UNAME_RELEASE}
|
1220
|
+
exit ;;
|
1221
|
+
SX-8:SUPER-UX:*:*)
|
1222
|
+
echo sx8-nec-superux${UNAME_RELEASE}
|
1223
|
+
exit ;;
|
1224
|
+
SX-8R:SUPER-UX:*:*)
|
1225
|
+
echo sx8r-nec-superux${UNAME_RELEASE}
|
1226
|
+
exit ;;
|
1221
1227
|
Power*:Rhapsody:*:*)
|
1222
1228
|
echo powerpc-apple-rhapsody${UNAME_RELEASE}
|
1223
1229
|
exit ;;
|
data/config.sub
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
|
5
5
|
# Inc.
|
6
6
|
|
7
|
-
timestamp='
|
7
|
+
timestamp='2007-06-28'
|
8
8
|
|
9
9
|
# This file is (in principle) common to ALL GNU software.
|
10
10
|
# The presence of a machine in this file suggests that SOME GNU software
|
@@ -245,12 +245,12 @@ case $basic_machine in
|
|
245
245
|
| bfin \
|
246
246
|
| c4x | clipper \
|
247
247
|
| d10v | d30v | dlx | dsp16xx \
|
248
|
-
| fr30 | frv \
|
248
|
+
| fido | fr30 | frv \
|
249
249
|
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
|
250
250
|
| i370 | i860 | i960 | ia64 \
|
251
251
|
| ip2k | iq2000 \
|
252
252
|
| m32c | m32r | m32rle | m68000 | m68k | m88k \
|
253
|
-
| maxq | mb | microblaze | mcore \
|
253
|
+
| maxq | mb | microblaze | mcore | mep \
|
254
254
|
| mips | mipsbe | mipseb | mipsel | mipsle \
|
255
255
|
| mips16 \
|
256
256
|
| mips64 | mips64el \
|
@@ -324,7 +324,7 @@ case $basic_machine in
|
|
324
324
|
| clipper-* | craynv-* | cydra-* \
|
325
325
|
| d10v-* | d30v-* | dlx-* \
|
326
326
|
| elxsi-* \
|
327
|
-
| f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
|
327
|
+
| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
|
328
328
|
| h8300-* | h8500-* \
|
329
329
|
| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
|
330
330
|
| i*86-* | i860-* | i960-* | ia64-* \
|
@@ -475,8 +475,8 @@ case $basic_machine in
|
|
475
475
|
basic_machine=craynv-cray
|
476
476
|
os=-unicosmp
|
477
477
|
;;
|
478
|
-
|
479
|
-
basic_machine=
|
478
|
+
cr16)
|
479
|
+
basic_machine=cr16-unknown
|
480
480
|
os=-elf
|
481
481
|
;;
|
482
482
|
crds | unos)
|
@@ -683,6 +683,10 @@ case $basic_machine in
|
|
683
683
|
basic_machine=i386-pc
|
684
684
|
os=-mingw32
|
685
685
|
;;
|
686
|
+
mingw32ce)
|
687
|
+
basic_machine=arm-unknown
|
688
|
+
os=-mingw32ce
|
689
|
+
;;
|
686
690
|
miniframe)
|
687
691
|
basic_machine=m68000-convergent
|
688
692
|
;;
|
@@ -925,6 +929,9 @@ case $basic_machine in
|
|
925
929
|
basic_machine=sh-hitachi
|
926
930
|
os=-hms
|
927
931
|
;;
|
932
|
+
sh5el)
|
933
|
+
basic_machine=sh5le-unknown
|
934
|
+
;;
|
928
935
|
sh64)
|
929
936
|
basic_machine=sh64-unknown
|
930
937
|
;;
|
@@ -1219,7 +1226,7 @@ case $os in
|
|
1219
1226
|
| -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
|
1220
1227
|
| -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
|
1221
1228
|
| -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
|
1222
|
-
| -skyos* | -haiku* | -rdos* | -toppers*)
|
1229
|
+
| -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
|
1223
1230
|
# Remember, each alternative MUST END IN *, to match a version number.
|
1224
1231
|
;;
|
1225
1232
|
-qnx*)
|
@@ -1414,6 +1421,9 @@ case $basic_machine in
|
|
1414
1421
|
m68*-cisco)
|
1415
1422
|
os=-aout
|
1416
1423
|
;;
|
1424
|
+
mep-*)
|
1425
|
+
os=-elf
|
1426
|
+
;;
|
1417
1427
|
mips*-cisco)
|
1418
1428
|
os=-elf
|
1419
1429
|
;;
|
data/configure
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#! /bin/sh
|
2
|
-
# From configure.ac Id: configure.ac,v 1.
|
2
|
+
# From configure.ac Id: configure.ac,v 1.8 2008/09/22 20:26:24 rocky Exp .
|
3
3
|
# Guess values for system-dependent variables and create Makefiles.
|
4
|
-
# Generated by GNU Autoconf 2.61 for
|
4
|
+
# Generated by GNU Autoconf 2.61 for rbcdio 0.03.
|
5
5
|
#
|
6
6
|
# Report bugs to <libcdio-rubycdio-devel@gnu.org>.
|
7
7
|
#
|
@@ -573,10 +573,10 @@ MAKEFLAGS=
|
|
573
573
|
SHELL=${CONFIG_SHELL-/bin/sh}
|
574
574
|
|
575
575
|
# Identity of this package.
|
576
|
-
PACKAGE_NAME='
|
577
|
-
PACKAGE_TARNAME='
|
578
|
-
PACKAGE_VERSION='0.
|
579
|
-
PACKAGE_STRING='
|
576
|
+
PACKAGE_NAME='rbcdio'
|
577
|
+
PACKAGE_TARNAME='rbcdio'
|
578
|
+
PACKAGE_VERSION='0.03'
|
579
|
+
PACKAGE_STRING='rbcdio 0.03'
|
580
580
|
PACKAGE_BUGREPORT='libcdio-rubycdio-devel@gnu.org'
|
581
581
|
|
582
582
|
ac_subst_vars='SHELL
|
@@ -629,7 +629,6 @@ OBJEXT
|
|
629
629
|
INSTALL_PROGRAM
|
630
630
|
INSTALL_SCRIPT
|
631
631
|
INSTALL_DATA
|
632
|
-
am__isrc
|
633
632
|
CYGPATH_W
|
634
633
|
PACKAGE
|
635
634
|
VERSION
|
@@ -1198,7 +1197,7 @@ if test "$ac_init_help" = "long"; then
|
|
1198
1197
|
# Omit some internal or obsolete options to make the list less imposing.
|
1199
1198
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
1200
1199
|
cat <<_ACEOF
|
1201
|
-
\`configure' configures
|
1200
|
+
\`configure' configures rbcdio 0.03 to adapt to many kinds of systems.
|
1202
1201
|
|
1203
1202
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
1204
1203
|
|
@@ -1246,7 +1245,7 @@ Fine tuning of the installation directories:
|
|
1246
1245
|
--infodir=DIR info documentation [DATAROOTDIR/info]
|
1247
1246
|
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
1248
1247
|
--mandir=DIR man documentation [DATAROOTDIR/man]
|
1249
|
-
--docdir=DIR documentation root [DATAROOTDIR/doc/
|
1248
|
+
--docdir=DIR documentation root [DATAROOTDIR/doc/rbcdio]
|
1250
1249
|
--htmldir=DIR html documentation [DOCDIR]
|
1251
1250
|
--dvidir=DIR dvi documentation [DOCDIR]
|
1252
1251
|
--pdfdir=DIR pdf documentation [DOCDIR]
|
@@ -1268,7 +1267,7 @@ fi
|
|
1268
1267
|
|
1269
1268
|
if test -n "$ac_init_help"; then
|
1270
1269
|
case $ac_init_help in
|
1271
|
-
short | recursive ) echo "Configuration of
|
1270
|
+
short | recursive ) echo "Configuration of rbcdio 0.03:";;
|
1272
1271
|
esac
|
1273
1272
|
cat <<\_ACEOF
|
1274
1273
|
|
@@ -1368,7 +1367,7 @@ fi
|
|
1368
1367
|
test -n "$ac_init_help" && exit $ac_status
|
1369
1368
|
if $ac_init_version; then
|
1370
1369
|
cat <<\_ACEOF
|
1371
|
-
|
1370
|
+
rbcdio configure 0.03
|
1372
1371
|
generated by GNU Autoconf 2.61
|
1373
1372
|
|
1374
1373
|
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
@@ -1382,7 +1381,7 @@ cat >config.log <<_ACEOF
|
|
1382
1381
|
This file contains any messages produced by compilers while
|
1383
1382
|
running configure, to aid debugging if configure makes a mistake.
|
1384
1383
|
|
1385
|
-
It was created by
|
1384
|
+
It was created by rbcdio $as_me 0.03, which was
|
1386
1385
|
generated by GNU Autoconf 2.61. Invocation command line was
|
1387
1386
|
|
1388
1387
|
$ $0 $@
|
@@ -1736,9 +1735,6 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
1736
1735
|
|
1737
1736
|
|
1738
1737
|
|
1739
|
-
##
|
1740
|
-
## Check for Python interpreter and make we have a recent version.
|
1741
|
-
##
|
1742
1738
|
|
1743
1739
|
##
|
1744
1740
|
## In maintainer mode we produce a ChangeLog
|
@@ -1754,7 +1750,9 @@ fi
|
|
1754
1750
|
|
1755
1751
|
{ echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
|
1756
1752
|
echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; }
|
1757
|
-
|
1753
|
+
|
1754
|
+
|
1755
|
+
if test $USE_MAINTAINER_MODE = yes; then
|
1758
1756
|
MAINTAINER_MODE_TRUE=
|
1759
1757
|
MAINTAINER_MODE_FALSE='#'
|
1760
1758
|
else
|
@@ -2703,8 +2701,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
2703
2701
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
2704
2702
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
2705
2703
|
|
2706
|
-
am__api_version=
|
2707
|
-
|
2704
|
+
am__api_version="1.9"
|
2708
2705
|
ac_aux_dir=
|
2709
2706
|
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
2710
2707
|
if test -f "$ac_dir/install-sh"; then
|
@@ -2874,53 +2871,38 @@ else
|
|
2874
2871
|
echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
|
2875
2872
|
fi
|
2876
2873
|
|
2877
|
-
|
2878
|
-
|
2879
|
-
|
2880
|
-
|
2881
|
-
|
2874
|
+
if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
|
2875
|
+
# We used to keeping the `.' as first argument, in order to
|
2876
|
+
# allow $(mkdir_p) to be used without argument. As in
|
2877
|
+
# $(mkdir_p) $(somedir)
|
2878
|
+
# where $(somedir) is conditionally defined. However this is wrong
|
2879
|
+
# for two reasons:
|
2880
|
+
# 1. if the package is installed by a user who cannot write `.'
|
2881
|
+
# make install will fail,
|
2882
|
+
# 2. the above comment should most certainly read
|
2883
|
+
# $(mkdir_p) $(DESTDIR)$(somedir)
|
2884
|
+
# so it does not work when $(somedir) is undefined and
|
2885
|
+
# $(DESTDIR) is not.
|
2886
|
+
# To support the latter case, we have to write
|
2887
|
+
# test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
|
2888
|
+
# so the `.' trick is pointless.
|
2889
|
+
mkdir_p='mkdir -p --'
|
2882
2890
|
else
|
2883
|
-
|
2884
|
-
|
2885
|
-
|
2886
|
-
|
2887
|
-
|
2888
|
-
|
2889
|
-
|
2890
|
-
|
2891
|
-
|
2892
|
-
|
2893
|
-
|
2894
|
-
'mkdir (fileutils) '4.1*)
|
2895
|
-
ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
|
2896
|
-
break 3;;
|
2897
|
-
esac
|
2898
|
-
done
|
2899
|
-
done
|
2900
|
-
done
|
2901
|
-
IFS=$as_save_IFS
|
2902
|
-
|
2903
|
-
fi
|
2904
|
-
|
2905
|
-
if test "${ac_cv_path_mkdir+set}" = set; then
|
2906
|
-
MKDIR_P="$ac_cv_path_mkdir -p"
|
2891
|
+
# On NextStep and OpenStep, the `mkdir' command does not
|
2892
|
+
# recognize any option. It will interpret all options as
|
2893
|
+
# directories to create, and then abort because `.' already
|
2894
|
+
# exists.
|
2895
|
+
for d in ./-p ./--version;
|
2896
|
+
do
|
2897
|
+
test -d $d && rmdir $d
|
2898
|
+
done
|
2899
|
+
# $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
|
2900
|
+
if test -f "$ac_aux_dir/mkinstalldirs"; then
|
2901
|
+
mkdir_p='$(mkinstalldirs)'
|
2907
2902
|
else
|
2908
|
-
|
2909
|
-
# value for MKDIR_P within a source directory, because that will
|
2910
|
-
# break other packages using the cache if that directory is
|
2911
|
-
# removed, or if the value is a relative name.
|
2912
|
-
test -d ./--version && rmdir ./--version
|
2913
|
-
MKDIR_P="$ac_install_sh -d"
|
2903
|
+
mkdir_p='$(install_sh) -d'
|
2914
2904
|
fi
|
2915
2905
|
fi
|
2916
|
-
{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5
|
2917
|
-
echo "${ECHO_T}$MKDIR_P" >&6; }
|
2918
|
-
|
2919
|
-
mkdir_p="$MKDIR_P"
|
2920
|
-
case $mkdir_p in
|
2921
|
-
[\\/$]* | ?:[\\/]*) ;;
|
2922
|
-
*/*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
|
2923
|
-
esac
|
2924
2906
|
|
2925
2907
|
for ac_prog in gawk mawk nawk awk
|
2926
2908
|
do
|
@@ -3056,7 +3038,9 @@ if test "x$enable_dependency_tracking" != xno; then
|
|
3056
3038
|
am_depcomp="$ac_aux_dir/depcomp"
|
3057
3039
|
AMDEPBACKSLASH='\'
|
3058
3040
|
fi
|
3059
|
-
|
3041
|
+
|
3042
|
+
|
3043
|
+
if test "x$enable_dependency_tracking" != xno; then
|
3060
3044
|
AMDEP_TRUE=
|
3061
3045
|
AMDEP_FALSE='#'
|
3062
3046
|
else
|
@@ -3065,16 +3049,13 @@ else
|
|
3065
3049
|
fi
|
3066
3050
|
|
3067
3051
|
|
3068
|
-
|
3069
|
-
|
3070
|
-
|
3071
|
-
|
3072
|
-
|
3073
|
-
if test -f $srcdir/config.status; then
|
3074
|
-
{ { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
|
3052
|
+
|
3053
|
+
# test to see if srcdir already configured
|
3054
|
+
if test "`cd $srcdir && pwd`" != "`pwd`" &&
|
3055
|
+
test -f $srcdir/config.status; then
|
3056
|
+
{ { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
|
3075
3057
|
echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
|
3076
3058
|
{ (exit 1); exit 1; }; }
|
3077
|
-
fi
|
3078
3059
|
fi
|
3079
3060
|
|
3080
3061
|
# test whether we have cygpath
|
@@ -3088,8 +3069,8 @@ fi
|
|
3088
3069
|
|
3089
3070
|
|
3090
3071
|
# Define the identity of the package.
|
3091
|
-
PACKAGE='
|
3092
|
-
VERSION='0.
|
3072
|
+
PACKAGE='rbcdio'
|
3073
|
+
VERSION='0.03'
|
3093
3074
|
|
3094
3075
|
|
3095
3076
|
cat >>confdefs.h <<_ACEOF
|
@@ -3117,7 +3098,7 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
|
|
3117
3098
|
|
3118
3099
|
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
|
3119
3100
|
|
3120
|
-
install_sh=${install_sh-"
|
3101
|
+
install_sh=${install_sh-"$am_aux_dir/install-sh"}
|
3121
3102
|
|
3122
3103
|
# Installed binaries are usually stripped using `strip' when the user
|
3123
3104
|
# run `make install-strip'. However `strip' might not be the right
|
@@ -3221,7 +3202,7 @@ else
|
|
3221
3202
|
fi
|
3222
3203
|
|
3223
3204
|
fi
|
3224
|
-
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
3205
|
+
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
|
3225
3206
|
|
3226
3207
|
# We need awk for the "check" target. The system "awk" is bad on
|
3227
3208
|
# some platforms.
|
@@ -3301,7 +3282,6 @@ else
|
|
3301
3282
|
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
3302
3283
|
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
|
3303
3284
|
>/dev/null 2>conftest.err &&
|
3304
|
-
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
|
3305
3285
|
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
|
3306
3286
|
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
|
3307
3287
|
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
@@ -3331,7 +3311,9 @@ fi
|
|
3331
3311
|
echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
|
3332
3312
|
CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
|
3333
3313
|
|
3334
|
-
|
3314
|
+
|
3315
|
+
|
3316
|
+
if
|
3335
3317
|
test "x$enable_dependency_tracking" != xno \
|
3336
3318
|
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
|
3337
3319
|
am__fastdepCC_TRUE=
|
@@ -4526,7 +4508,7 @@ exec 6>&1
|
|
4526
4508
|
# report actual input values of CONFIG_FILES etc. instead of their
|
4527
4509
|
# values after options handling.
|
4528
4510
|
ac_log="
|
4529
|
-
This file was extended by
|
4511
|
+
This file was extended by rbcdio $as_me 0.03, which was
|
4530
4512
|
generated by GNU Autoconf 2.61. Invocation command line was
|
4531
4513
|
|
4532
4514
|
CONFIG_FILES = $CONFIG_FILES
|
@@ -4573,7 +4555,7 @@ Report bugs to <bug-autoconf@gnu.org>."
|
|
4573
4555
|
_ACEOF
|
4574
4556
|
cat >>$CONFIG_STATUS <<_ACEOF
|
4575
4557
|
ac_cs_version="\\
|
4576
|
-
|
4558
|
+
rbcdio config.status 0.03
|
4577
4559
|
configured by $0, generated by GNU Autoconf 2.61,
|
4578
4560
|
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
4579
4561
|
|
@@ -4584,7 +4566,6 @@ gives unlimited permission to copy, distribute and modify it."
|
|
4584
4566
|
ac_pwd='$ac_pwd'
|
4585
4567
|
srcdir='$srcdir'
|
4586
4568
|
INSTALL='$INSTALL'
|
4587
|
-
MKDIR_P='$MKDIR_P'
|
4588
4569
|
_ACEOF
|
4589
4570
|
|
4590
4571
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
@@ -4792,7 +4773,6 @@ OBJEXT!$OBJEXT$ac_delim
|
|
4792
4773
|
INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
|
4793
4774
|
INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
|
4794
4775
|
INSTALL_DATA!$INSTALL_DATA$ac_delim
|
4795
|
-
am__isrc!$am__isrc$ac_delim
|
4796
4776
|
CYGPATH_W!$CYGPATH_W$ac_delim
|
4797
4777
|
PACKAGE!$PACKAGE$ac_delim
|
4798
4778
|
VERSION!$VERSION$ac_delim
|
@@ -4839,6 +4819,7 @@ host_cpu!$host_cpu$ac_delim
|
|
4839
4819
|
host_vendor!$host_vendor$ac_delim
|
4840
4820
|
host_os!$host_os$ac_delim
|
4841
4821
|
SO!$SO$ac_delim
|
4822
|
+
RUBY_LIBS!$RUBY_LIBS$ac_delim
|
4842
4823
|
_ACEOF
|
4843
4824
|
|
4844
4825
|
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
|
@@ -4880,7 +4861,6 @@ _ACEOF
|
|
4880
4861
|
ac_delim='%!_!# '
|
4881
4862
|
for ac_last_try in false false false false false :; do
|
4882
4863
|
cat >conf$$subs.sed <<_ACEOF
|
4883
|
-
RUBY_LIBS!$RUBY_LIBS$ac_delim
|
4884
4864
|
LDSHARED!$LDSHARED$ac_delim
|
4885
4865
|
SWIG_FLAGS!$SWIG_FLAGS$ac_delim
|
4886
4866
|
RUBYCDIO_LIBDIR!$RUBYCDIO_LIBDIR$ac_delim
|
@@ -4888,7 +4868,7 @@ LIBOBJS!$LIBOBJS$ac_delim
|
|
4888
4868
|
LTLIBOBJS!$LTLIBOBJS$ac_delim
|
4889
4869
|
_ACEOF
|
4890
4870
|
|
4891
|
-
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` =
|
4871
|
+
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 5; then
|
4892
4872
|
break
|
4893
4873
|
elif $ac_last_try; then
|
4894
4874
|
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
@@ -5115,11 +5095,6 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
|
5115
5095
|
[\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
|
5116
5096
|
*) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
|
5117
5097
|
esac
|
5118
|
-
ac_MKDIR_P=$MKDIR_P
|
5119
|
-
case $MKDIR_P in
|
5120
|
-
[\\/$]* | ?:[\\/]* ) ;;
|
5121
|
-
*/*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
|
5122
|
-
esac
|
5123
5098
|
_ACEOF
|
5124
5099
|
|
5125
5100
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
@@ -5173,7 +5148,6 @@ s&@builddir@&$ac_builddir&;t t
|
|
5173
5148
|
s&@abs_builddir@&$ac_abs_builddir&;t t
|
5174
5149
|
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
|
5175
5150
|
s&@INSTALL@&$ac_INSTALL&;t t
|
5176
|
-
s&@MKDIR_P@&$ac_MKDIR_P&;t t
|
5177
5151
|
$ac_datarootdir_hack
|
5178
5152
|
" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
|
5179
5153
|
|
@@ -5208,9 +5182,8 @@ echo "$as_me: executing $ac_file commands" >&6;}
|
|
5208
5182
|
# some people rename them; so instead we look at the file content.
|
5209
5183
|
# Grep'ing the first line is not enough: some people post-process
|
5210
5184
|
# each Makefile.in and add a new line on top of each file to say so.
|
5211
|
-
#
|
5212
|
-
|
5213
|
-
if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
|
5185
|
+
# So let's grep whole file.
|
5186
|
+
if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
|
5214
5187
|
dirpart=`$as_dirname -- "$mf" ||
|
5215
5188
|
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
5216
5189
|
X"$mf" : 'X\(//\)[^/]' \| \
|
data/configure.ac
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2006, 2007 Rocky Bernstein <rocky@gnu.org>
|
1
|
+
# Copyright (C) 2006, 2007, 2008 Rocky Bernstein <rocky@gnu.org>
|
2
2
|
|
3
3
|
# This program is free software; you can redistribute it and/or modify
|
4
4
|
# it under the terms of the GNU General Public License as published by
|
@@ -18,12 +18,9 @@
|
|
18
18
|
## Note: the version number (the 2nd parameter in AC_INIT)
|
19
19
|
## is picked up inside the Python debugger script.
|
20
20
|
|
21
|
-
AC_INIT([
|
21
|
+
AC_INIT([rbcdio],[0.03],[libcdio-rubycdio-devel@gnu.org])
|
22
22
|
|
23
|
-
|
24
|
-
## Check for Python interpreter and make we have a recent version.
|
25
|
-
##
|
26
|
-
AC_REVISION([$Id: configure.ac,v 1.6 2007/10/13 17:11:45 rocky Exp $])dnl
|
23
|
+
AC_REVISION([$Id: configure.ac,v 1.8 2008/09/22 20:26:24 rocky Exp $])dnl
|
27
24
|
|
28
25
|
##
|
29
26
|
## In maintainer mode we produce a ChangeLog
|
data/doc/created.rid
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
Mon, 25 Aug 2008 17:22:45 -0400
|