diff --git a/Makefile b/Makefile
index 6c0d214..1e6d069 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,16 @@ default: decode
decode.o: decode.c
gcc -c decode.c -o decode.o
-decode: decode.o
+snowboy-decode.o: snowboy-decode.c
+ gcc -c snowboy-decode.c -o snowboy-decode.o
+
+decode: decode.o snowboy-decode.o
gcc decode.o -o decode
+ gcc snowboy-decode.o -o snowboy-decode
clean:
-rm -f decode.o
-rm -f decode
+ -rm -f snowboy-decode
+ -rm -f snowby-decode.o
+
diff --git a/accuracy-test.csv b/accuracy-test.csv
new file mode 100644
index 0000000..1f207a1
--- /dev/null
+++ b/accuracy-test.csv
@@ -0,0 +1,19 @@
+What I said, What Klauba heard
+Take me to room 2337,Take me to room 2337
+How do I get to room 2335,How do I get to room 2335
+Go forward,Go forward
+Go backward,Go backward
+Move left,Move left
+Move right,Move right
+Where am I,Where am I?
+Show me to room 2341,Show me to room 2341
+Stop,Stop
+Move forward,Move forward
+Move backward,Move backward
+Where is 2342,Where is 2342
+Where is room 2346,Where is room 2346
+How do I get to room 2360,How are you get to room 2360
+Stop moving,Stop moving
+Hi Klauba,I Klauba
+Hello Klauba,Hello Klauba
+
diff --git a/decode.c b/decode.c
index e31ebf8..0a0b41a 100644
--- a/decode.c
+++ b/decode.c
@@ -6,20 +6,23 @@
int main(void) {
struct timespec start, end;
-
+ if (getenv("SPEECH_RECOGNITION") == NULL) {
+ system("echo Please set the SPEECH_RECOGNITION environment variable to point to the git repository");
+ return 1;
+ }
system("export LD_LIBRARY_PATH=/usr/local/lib");
- system("aplay /home/pi/speech2text/beep-07.wav");
- system("arecord --format=S16_LE --duration=5 --rate=16k -D sysdefault:CARD=1 --file-type=wav testfiles/noisy.wav");
- system("aplay /home/pi/speech2text/beep-08b.wav");
+ system("aplay $SPEECH_RECOGNITION/beep-07.wav");
+ system("arecord --format=S16_LE --duration=5 -r 16000 --file-type=wav inputs/noisy.wav");
+ system("aplay $SPEECH_RECOGNITION/beep-08b.wav");
system("echo done recording...");
- system("python testfiles/noiseClean.py");
+ system("python noiseClean.py");
system("echo done cleaning...");
clock_gettime(CLOCK_REALTIME, &start);
system("\
pocketsphinx_continuous \
- -infile testfiles/noisy.wav \
- -dict dicts/3651.dic \
- -lm dicts/3651.lm \
+ -infile inputs/filtered.wav \
+ -dict ./models/corpus/Corpus_V3/100.dic \
+ -lm ./models/corpus/Corpus_V3/100.lm \
2>./output/unwanted-stuff.log | tee ./output/words.txt");
// pocketsphinx_continuous -infile testfiles/speech.wav -dict dicts/8050.dic -lm dicts/8050.lm 2>./output/unwanted-stuff.log | tee ./output/words.txt
system("echo done decoding...");
diff --git a/inputs/raw_recording.wav b/inputs/raw_recording.wav
new file mode 100644
index 0000000..d13ac37
Binary files /dev/null and b/inputs/raw_recording.wav differ
diff --git a/install.sh b/install.sh
old mode 100644
new mode 100755
index 184b2ac..37296b1
--- a/install.sh
+++ b/install.sh
@@ -1,3 +1,4 @@
+mkdir output
sudo apt-get install bison
sudo apt-get install swig
cd sphinxbase-5prealpha
@@ -12,3 +13,4 @@ cd ../pocketsphinx-5prealpha
.configure
make -j
sudo make install
+sudo ldconfig
diff --git a/jackd_fix.sh b/jackd_fix.sh
new file mode 100755
index 0000000..bc4f689
--- /dev/null
+++ b/jackd_fix.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+jack_control start
+
diff --git a/klauba.py b/klauba.py
new file mode 100644
index 0000000..a4802d7
--- /dev/null
+++ b/klauba.py
@@ -0,0 +1,55 @@
+import snowboydecoder
+from record import start_recording
+import os
+import sys
+import signal
+
+interrupted = False
+kill_script = False
+def detected():
+ global detector
+ # detector.terminate() # THIS LINE CAN CREATE HANGS ON CERTAIN MACHINES (COMMENT OUT IF THE SCRIPT HANGS)
+ print("Starting recording")
+ data, open_wave = start_recording()
+ open_wave.close()
+ print("Recording complete")
+ global interrupted
+ interrupted = True # signal to the detector to stop after first detection
+
+def signal_handler(signal, frame):
+ global interrupted
+ interrupted = True
+
+ global kill_script
+ kill_script = True
+
+
+def interrupt_callback():
+ global interrupted
+ return interrupted
+
+
+# capture SIGINT signal, e.g., Ctrl+C
+signal.signal(signal.SIGINT, signal_handler)
+
+detector = snowboydecoder.HotwordDetector("./models/Klauba.pmdl", sensitivity=0.5)
+print('Listening for Klauba...')
+
+# main loop
+detector.start(detected_callback=detected,
+ interrupt_check=interrupt_callback,
+ sleep_time=0.03)
+
+if os.path.exists("./inputs/raw_recording.wav"):
+ print ("I heard: ")
+ os.system("pocketsphinx_continuous -infile ./inputs/raw_recording.wav \
+ -dict dicts/8050.dic \
+ -lm dicts/8050.lm \
+ -logfn /dev/null")
+else: print ('There is no input to detect')
+
+
+if kill_script:
+ sys.exit(1) # the user hit cntrl-c
+else:
+ sys.exit(0) # the user did not hit cntrl-c
diff --git a/models/Klauba.pmdl b/models/Klauba.pmdl
new file mode 100644
index 0000000..bf639a1
Binary files /dev/null and b/models/Klauba.pmdl differ
diff --git a/models/corpus/Corpus_V3/100.dic b/models/corpus/Corpus_V3/100.dic
new file mode 100644
index 0000000..405eaba
--- /dev/null
+++ b/models/corpus/Corpus_V3/100.dic
@@ -0,0 +1,67 @@
+2332 T UW TH R IY TH R IY T UW
+2333 T UW TH R IY TH R IY TH R IY
+2334 T UW TH R IY TH R IY F OW R
+2335 T UW TH R IY TH R IY F AY V
+2336 T UW TH R IY TH R IY S IH K S
+2337 T UW TH R IY TH R IY S EH V AH N
+2338 T UW TH R IY TH R IY EY T
+2340 T UW TH R IY F OW R Z IY R OW
+2341 T UW TH R IY F OW R W AH N
+2342 T UW TH R IY F OW R T UW
+2344 T UW TH R IY F OW R F OW R
+2346 T UW TH R IY F OW R S IH K S
+2347 T UW TH R IY F OW R S EH V AH N
+2350 T UW TH R IY F AY V Z IY R OW
+2355 T UW TH R IY F AY V F AY V
+2356 T UW TH R IY F AY V S IH K S
+2357 T UW TH R IY F AY V S EH V AH N
+2358 T UW TH R IY F AY V EY T
+2359 T UW TH R IY F AY V N AY N
+2360 T UW TH R IY S IH K S Z IY R OW
+2361 T UW TH R IY S IH K S W AH N
+2362 T UW TH R IY S IH K S T UW
+2363 T UW TH R IY S IH K S TH R IY
+AM AE M
+AM(2) EY EH M
+ARE AA R
+ARE(2) ER
+ATRIUM? AE T R IY AH M
+BACKWARD B AE K W ER D
+BUILDING B IH L D IH NG
+DO D UW
+FORWARD F AO R W ER D
+GET G EH T
+GET(2) G IH T
+GO G OW
+HELLO HH AH L OW
+HELLO(2) HH EH L OW
+HI HH AY
+HOW HH AW
+I AY
+I? AY
+IN? IH N
+IS IH Z
+KLAUBA K L AO B AH
+KLAUBA, K L AO B AH
+KLAUBA? K L AO B AH
+LEFT L EH F T
+ME M IY
+MOVE M UW V
+MOVING M UW V IH NG
+RIGHT R AY T
+ROOM R UW M
+SHOW SH OW
+STOP S T AA P
+TAKE T EY K
+THE DH AH
+THE(2) DH IY
+TO T UW
+TO(2) T IH
+TO(3) T AH
+TODAY, T AH D EY
+TODAY? T AH D EY
+WHAT W AH T
+WHAT(2) HH W AH T
+WHERE W EH R
+WHERE(2) HH W EH R
+YOU Y UW
diff --git a/models/corpus/Corpus_V3/100.lm b/models/corpus/Corpus_V3/100.lm
new file mode 100644
index 0000000..cb3e6ad
--- /dev/null
+++ b/models/corpus/Corpus_V3/100.lm
@@ -0,0 +1,487 @@
+Language model created by QuickLM on Mon Dec 2 19:38:52 EST 2019
+Copyright (c) 1996-2010 Carnegie Mellon University and Alexander I. Rudnicky
+
+The model is in standard ARPA format, designed by Doug Paul while he was at MITRE.
+
+The code that was used to produce this language model is available in Open Source.
+Please visit http://www.speech.cs.cmu.edu/tools/ for more information
+
+The (fixed) discount mass is 0.5. The backoffs are computed using the ratio method.
+This model based on a corpus of 228 sentences and 60 words
+
+\data\
+ngram 1=60
+ngram 2=155
+ngram 3=249
+
+\1-grams:
+-2.5123 2332 -0.2658
+-2.5123 2333 -0.2658
+-2.5123 2334 -0.2658
+-2.5123 2335 -0.2658
+-2.5123 2336 -0.2658
+-2.5123 2337 -0.2658
+-2.5123 2338 -0.2658
+-2.5123 2340 -0.2658
+-2.5123 2341 -0.2658
+-2.5123 2342 -0.2658
+-2.5123 2344 -0.2658
+-2.5123 2346 -0.2658
+-2.5123 2347 -0.2658
+-2.5123 2350 -0.2658
+-2.5123 2355 -0.2658
+-2.5123 2356 -0.2658
+-2.5123 2357 -0.2658
+-2.5123 2358 -0.2658
+-2.5123 2359 -0.2658
+-2.5123 2360 -0.2658
+-2.5123 2361 -0.2658
+-2.5123 2362 -0.2658
+-2.5123 2363 -0.2658
+-1.1086 -0.3010
+-1.1086 -0.2652
+-2.7676 AM -0.2932
+-3.1655 ARE -0.3007
+-3.4666 ATRIUM? -0.2658
+-3.1655 BACKWARD -0.2658
+-3.4666 BUILDING -0.3003
+-1.7945 DO -0.2935
+-3.1655 FORWARD -0.2658
+-1.7945 GET -0.2727
+-2.8645 GO -0.2998
+-3.4666 HELLO -0.3007
+-3.4666 HI -0.3007
+-1.7764 HOW -0.2937
+-1.7676 I -0.2935
+-3.1655 I? -0.2658
+-2.9894 IN? -0.2658
+-2.1048 IS -0.2692
+-3.1655 KLAUBA -0.2658
+-2.8645 KLAUBA, -0.2890
+-3.4666 KLAUBA? -0.2658
+-3.1655 LEFT -0.2658
+-1.5028 ME -0.2727
+-1.7676 MOVE -0.2714
+-3.4666 MOVING -0.2658
+-3.1655 RIGHT -0.2658
+-1.4934 ROOM -0.2684
+-1.8038 SHOW -0.2872
+-2.9894 STOP -0.2657
+-1.8038 TAKE -0.2872
+-3.4666 THE -0.3009
+-1.1994 TO -0.2538
+-3.4666 TODAY, -0.3009
+-3.4666 TODAY? -0.2658
+-2.9894 WHAT -0.2867
+-2.0686 WHERE -0.2969
+-3.1655 YOU -0.3007
+
+\2-grams:
+-0.3010 2332 -0.3010
+-0.3010 2333 -0.3010
+-0.3010 2334 -0.3010
+-0.3010 2335 -0.3010
+-0.3010 2336 -0.3010
+-0.3010 2337 -0.3010
+-0.3010 2338 -0.3010
+-0.3010 2340 -0.3010
+-0.3010 2341 -0.3010
+-0.3010 2342 -0.3010
+-0.3010 2344 -0.3010
+-0.3010 2346 -0.3010
+-0.3010 2347 -0.3010
+-0.3010 2350 -0.3010
+-0.3010 2355 -0.3010
+-0.3010 2356 -0.3010
+-0.3010 2357 -0.3010
+-0.3010 2358 -0.3010
+-0.3010 2359 -0.3010
+-0.3010 2360 -0.3010
+-0.3010 2361 -0.3010
+-0.3010 2362 -0.3010
+-0.3010 2363 -0.3010
+-2.0569 GO 0.0000
+-2.6590 HELLO 0.0000
+-2.6590 HI 0.0000
+-0.9777 HOW 0.0000
+-2.0569 KLAUBA, 0.0000
+-0.9600 MOVE 0.0000
+-0.9962 SHOW 0.0000
+-2.3579 STOP 0.0000
+-0.9962 TAKE 0.0000
+-2.3579 WHAT 0.0000
+-1.2788 WHERE 0.0000
+-0.5229 AM I -0.2878
+-0.6990 AM I? 0.0000
+-0.3010 ARE YOU 0.0000
+-0.3010 ATRIUM? -0.3010
+-0.3010 BACKWARD -0.3010
+-0.3010 BUILDING AM -0.1461
+-0.3010 DO I -0.0253
+-0.3010 FORWARD -0.3010
+-0.3010 GET TO 0.0000
+-0.9031 GO BACKWARD 0.0000
+-0.9031 GO FORWARD 0.0000
+-0.9031 GO LEFT 0.0000
+-0.9031 GO RIGHT 0.0000
+-0.3010 HELLO KLAUBA 0.0000
+-0.3010 HI KLAUBA 0.0000
+-1.6902 HOW ARE 0.0000
+-0.3191 HOW DO 0.0000
+-0.3279 I GET 0.0000
+-1.5229 I IN? 0.0000
+-0.3010 I? -0.3010
+-0.3010 IN? -0.3010
+-1.6628 IS 2332 0.0000
+-1.6628 IS 2333 0.0000
+-1.6628 IS 2334 0.0000
+-1.6628 IS 2335 0.0000
+-1.6628 IS 2336 0.0000
+-1.6628 IS 2337 0.0000
+-1.6628 IS 2338 0.0000
+-1.6628 IS 2340 0.0000
+-1.6628 IS 2341 0.0000
+-1.6628 IS 2342 0.0000
+-1.6628 IS 2344 0.0000
+-1.6628 IS 2346 0.0000
+-1.6628 IS 2347 0.0000
+-1.6628 IS 2350 0.0000
+-1.6628 IS 2355 0.0000
+-1.6628 IS 2356 0.0000
+-1.6628 IS 2357 0.0000
+-1.6628 IS 2358 0.0000
+-1.6628 IS 2359 0.0000
+-1.6628 IS 2360 0.0000
+-1.6628 IS 2361 0.0000
+-1.6628 IS 2362 0.0000
+-1.6628 IS 2363 0.0000
+-0.3010 KLAUBA -0.3010
+-0.9031 KLAUBA, HOW -0.0174
+-0.9031 KLAUBA, STOP -0.1249
+-0.9031 KLAUBA, WHAT -0.1249
+-0.9031 KLAUBA, WHERE -0.2833
+-0.3010 KLAUBA? -0.3010
+-0.3010 LEFT -0.3010
+-0.3010 ME TO -0.0023
+-2.0000 MOVE BACKWARD 0.0000
+-2.0000 MOVE FORWARD 0.0000
+-2.0000 MOVE LEFT 0.0000
+-2.0000 MOVE RIGHT 0.0000
+-0.3372 MOVE TO -0.0023
+-0.3010 MOVING -0.3010
+-0.3010 RIGHT -0.3010
+-1.6721 ROOM 2332 0.0000
+-1.6721 ROOM 2333 0.0000
+-1.6721 ROOM 2334 0.0000
+-1.6721 ROOM 2335 0.0000
+-1.6721 ROOM 2336 0.0000
+-1.6721 ROOM 2337 0.0000
+-1.6721 ROOM 2338 0.0000
+-1.6721 ROOM 2340 0.0000
+-1.6721 ROOM 2341 0.0000
+-1.6721 ROOM 2342 0.0000
+-1.6721 ROOM 2344 0.0000
+-1.6721 ROOM 2346 0.0000
+-1.6721 ROOM 2347 0.0000
+-1.6721 ROOM 2350 0.0000
+-1.6721 ROOM 2355 0.0000
+-1.6721 ROOM 2356 0.0000
+-1.6721 ROOM 2357 0.0000
+-1.6721 ROOM 2358 0.0000
+-1.6721 ROOM 2359 0.0000
+-1.6721 ROOM 2360 0.0000
+-1.6721 ROOM 2361 0.0000
+-1.6721 ROOM 2362 0.0000
+-1.6721 ROOM 2363 0.0000
+-1.9731 ROOM AM -0.1461
+-0.3010 SHOW ME 0.0000
+-0.4771 STOP -0.3010
+-0.7782 STOP MOVING 0.0000
+-0.3010 TAKE ME 0.0000
+-0.3010 THE ATRIUM? 0.0000
+-1.9661 TO 2332 0.0000
+-1.9661 TO 2333 0.0000
+-1.9661 TO 2334 0.0000
+-1.9661 TO 2335 0.0000
+-1.9661 TO 2336 0.0000
+-1.9661 TO 2337 0.0000
+-1.9661 TO 2338 0.0000
+-1.9661 TO 2340 0.0000
+-1.9661 TO 2341 0.0000
+-1.9661 TO 2342 0.0000
+-1.9661 TO 2344 0.0000
+-1.9661 TO 2346 0.0000
+-1.9661 TO 2347 0.0000
+-1.9661 TO 2350 0.0000
+-1.9661 TO 2355 0.0000
+-1.9661 TO 2356 0.0000
+-1.9661 TO 2357 0.0000
+-1.9661 TO 2358 0.0000
+-1.9661 TO 2359 0.0000
+-1.9661 TO 2360 0.0000
+-1.9661 TO 2361 0.0000
+-1.9661 TO 2362 0.0000
+-1.9661 TO 2363 0.0000
+-0.6044 TO ROOM -0.0091
+-2.5682 TO THE 0.0000
+-0.3010 TODAY, KLAUBA? 0.0000
+-0.3010 TODAY? -0.3010
+-0.7782 WHAT BUILDING 0.0000
+-0.4771 WHAT ROOM -0.2964
+-1.3979 WHERE AM -0.2041
+-0.3372 WHERE IS -0.0000
+-0.6021 YOU TODAY, 0.0000
+-0.6021 YOU TODAY? 0.0000
+
+\3-grams:
+-0.9031 GO BACKWARD
+-0.9031 GO FORWARD
+-0.9031 GO LEFT
+-0.9031 GO RIGHT
+-0.3010 HELLO KLAUBA
+-0.3010 HI KLAUBA
+-1.6812 HOW ARE
+-0.3195 HOW DO
+-0.9031 KLAUBA, HOW
+-0.9031 KLAUBA, STOP
+-0.9031 KLAUBA, WHAT
+-0.9031 KLAUBA, WHERE
+-2.0000 MOVE BACKWARD
+-2.0000 MOVE FORWARD
+-2.0000 MOVE LEFT
+-2.0000 MOVE RIGHT
+-0.3372 MOVE TO
+-0.3010 SHOW ME
+-0.6021 STOP
+-0.6021 STOP MOVING
+-0.3010 TAKE ME
+-0.6021 WHAT BUILDING
+-0.6021 WHAT ROOM
+-1.6812 WHERE AM
+-0.3195 WHERE IS
+-0.3010 AM I IN?
+-0.3010 AM I?
+-0.6021 ARE YOU TODAY,
+-0.6021 ARE YOU TODAY?
+-0.3010 BUILDING AM I
+-0.3010 DO I GET
+-1.9731 GET TO 2332
+-1.9731 GET TO 2333
+-1.9731 GET TO 2334
+-1.9731 GET TO 2335
+-1.9731 GET TO 2336
+-1.9731 GET TO 2337
+-1.9731 GET TO 2338
+-1.9731 GET TO 2340
+-1.9731 GET TO 2341
+-1.9731 GET TO 2342
+-1.9731 GET TO 2344
+-1.9731 GET TO 2346
+-1.9731 GET TO 2347
+-1.9731 GET TO 2350
+-1.9731 GET TO 2355
+-1.9731 GET TO 2356
+-1.9731 GET TO 2357
+-1.9731 GET TO 2358
+-1.9731 GET TO 2359
+-1.9731 GET TO 2360
+-1.9731 GET TO 2361
+-1.9731 GET TO 2362
+-1.9731 GET TO 2363
+-0.6114 GET TO ROOM
+-1.9731 GET TO THE
+-0.3010 GO BACKWARD
+-0.3010 GO FORWARD
+-0.3010 GO LEFT
+-0.3010 GO RIGHT
+-0.3010 HELLO KLAUBA
+-0.3010 HI KLAUBA
+-0.3010 HOW ARE YOU
+-0.3010 HOW DO I
+-0.3010 I GET TO
+-0.3010 I IN?
+-0.3010 IS 2332
+-0.3010 IS 2333
+-0.3010 IS 2334
+-0.3010 IS 2335
+-0.3010 IS 2336
+-0.3010 IS 2337
+-0.3010 IS 2338
+-0.3010 IS 2340
+-0.3010 IS 2341
+-0.3010 IS 2342
+-0.3010 IS 2344
+-0.3010 IS 2346
+-0.3010 IS 2347
+-0.3010 IS 2350
+-0.3010 IS 2355
+-0.3010 IS 2356
+-0.3010 IS 2357
+-0.3010 IS 2358
+-0.3010 IS 2359
+-0.3010 IS 2360
+-0.3010 IS 2361
+-0.3010 IS 2362
+-0.3010 IS 2363
+-0.3010 KLAUBA, HOW DO
+-0.3010 KLAUBA, STOP
+-0.3010 KLAUBA, WHAT ROOM
+-0.3010 KLAUBA, WHERE AM
+-1.9638 ME TO 2332
+-1.9638 ME TO 2333
+-1.9638 ME TO 2334
+-1.9638 ME TO 2335
+-1.9638 ME TO 2336
+-1.9638 ME TO 2337
+-1.9638 ME TO 2338
+-1.9638 ME TO 2340
+-1.9638 ME TO 2341
+-1.9638 ME TO 2342
+-1.9638 ME TO 2344
+-1.9638 ME TO 2346
+-1.9638 ME TO 2347
+-1.9638 ME TO 2350
+-1.9638 ME TO 2355
+-1.9638 ME TO 2356
+-1.9638 ME TO 2357
+-1.9638 ME TO 2358
+-1.9638 ME TO 2359
+-1.9638 ME TO 2360
+-1.9638 ME TO 2361
+-1.9638 ME TO 2362
+-1.9638 ME TO 2363
+-0.6021 ME TO ROOM
+-0.3010 MOVE BACKWARD
+-0.3010 MOVE FORWARD
+-0.3010 MOVE LEFT
+-0.3010 MOVE RIGHT
+-1.9638 MOVE TO 2332
+-1.9638 MOVE TO 2333
+-1.9638 MOVE TO 2334
+-1.9638 MOVE TO 2335
+-1.9638 MOVE TO 2336
+-1.9638 MOVE TO 2337
+-1.9638 MOVE TO 2338
+-1.9638 MOVE TO 2340
+-1.9638 MOVE TO 2341
+-1.9638 MOVE TO 2342
+-1.9638 MOVE TO 2344
+-1.9638 MOVE TO 2346
+-1.9638 MOVE TO 2347
+-1.9638 MOVE TO 2350
+-1.9638 MOVE TO 2355
+-1.9638 MOVE TO 2356
+-1.9638 MOVE TO 2357
+-1.9638 MOVE TO 2358
+-1.9638 MOVE TO 2359
+-1.9638 MOVE TO 2360
+-1.9638 MOVE TO 2361
+-1.9638 MOVE TO 2362
+-1.9638 MOVE TO 2363
+-0.6021 MOVE TO ROOM
+-0.3010 ROOM 2332
+-0.3010 ROOM 2333
+-0.3010 ROOM 2334
+-0.3010 ROOM 2335
+-0.3010 ROOM 2336
+-0.3010 ROOM 2337
+-0.3010 ROOM 2338
+-0.3010 ROOM 2340
+-0.3010 ROOM 2341
+-0.3010 ROOM 2342
+-0.3010 ROOM 2344
+-0.3010 ROOM 2346
+-0.3010 ROOM 2347
+-0.3010 ROOM 2350
+-0.3010 ROOM 2355
+-0.3010 ROOM 2356
+-0.3010 ROOM 2357
+-0.3010 ROOM 2358
+-0.3010 ROOM 2359
+-0.3010 ROOM 2360
+-0.3010 ROOM 2361
+-0.3010 ROOM 2362
+-0.3010 ROOM 2363
+-0.3010 ROOM AM I
+-0.3010 SHOW ME TO
+-0.3010 STOP MOVING
+-0.3010 TAKE ME TO
+-0.3010 THE ATRIUM?
+-0.3010 TO 2332
+-0.3010 TO 2333
+-0.3010 TO 2334
+-0.3010 TO 2335
+-0.3010 TO 2336
+-0.3010 TO 2337
+-0.3010 TO 2338
+-0.3010 TO 2340
+-0.3010 TO 2341
+-0.3010 TO 2342
+-0.3010 TO 2344
+-0.3010 TO 2346
+-0.3010 TO 2347
+-0.3010 TO 2350
+-0.3010 TO 2355
+-0.3010 TO 2356
+-0.3010 TO 2357
+-0.3010 TO 2358
+-0.3010 TO 2359
+-0.3010 TO 2360
+-0.3010 TO 2361
+-0.3010 TO 2362
+-0.3010 TO 2363
+-1.6628 TO ROOM 2332
+-1.6628 TO ROOM 2333
+-1.6628 TO ROOM 2334
+-1.6628 TO ROOM 2335
+-1.6628 TO ROOM 2336
+-1.6628 TO ROOM 2337
+-1.6628 TO ROOM 2338
+-1.6628 TO ROOM 2340
+-1.6628 TO ROOM 2341
+-1.6628 TO ROOM 2342
+-1.6628 TO ROOM 2344
+-1.6628 TO ROOM 2346
+-1.6628 TO ROOM 2347
+-1.6628 TO ROOM 2350
+-1.6628 TO ROOM 2355
+-1.6628 TO ROOM 2356
+-1.6628 TO ROOM 2357
+-1.6628 TO ROOM 2358
+-1.6628 TO ROOM 2359
+-1.6628 TO ROOM 2360
+-1.6628 TO ROOM 2361
+-1.6628 TO ROOM 2362
+-1.6628 TO ROOM 2363
+-0.3010 TO THE ATRIUM?
+-0.3010 TODAY, KLAUBA?
+-0.3010 WHAT BUILDING AM
+-0.3010 WHAT ROOM AM
+-0.3010 WHERE AM I?
+-1.6628 WHERE IS 2332
+-1.6628 WHERE IS 2333
+-1.6628 WHERE IS 2334
+-1.6628 WHERE IS 2335
+-1.6628 WHERE IS 2336
+-1.6628 WHERE IS 2337
+-1.6628 WHERE IS 2338
+-1.6628 WHERE IS 2340
+-1.6628 WHERE IS 2341
+-1.6628 WHERE IS 2342
+-1.6628 WHERE IS 2344
+-1.6628 WHERE IS 2346
+-1.6628 WHERE IS 2347
+-1.6628 WHERE IS 2350
+-1.6628 WHERE IS 2355
+-1.6628 WHERE IS 2356
+-1.6628 WHERE IS 2357
+-1.6628 WHERE IS 2358
+-1.6628 WHERE IS 2359
+-1.6628 WHERE IS 2360
+-1.6628 WHERE IS 2361
+-1.6628 WHERE IS 2362
+-1.6628 WHERE IS 2363
+-0.3010 YOU TODAY, KLAUBA?
+-0.3010 YOU TODAY?
+
+\end\
diff --git a/models/corpus/Corpus_V3/corpus.txt b/models/corpus/Corpus_V3/corpus.txt
new file mode 100644
index 0000000..f7a1567
--- /dev/null
+++ b/models/corpus/Corpus_V3/corpus.txt
@@ -0,0 +1,228 @@
+how are you today?
+Klauba, how do I get to the atrium?
+Where am I?
+Klauba, where am I?
+What room am I in?
+Klauba, what room am I in?
+Go forward
+Go backward
+Stop
+Stop moving
+Klauba, stop
+Go left
+Go Right
+Move left
+Move right
+Move forward
+Move backward
+Hi Klauba
+Hello Klauba
+How are you today, Klauba?
+What building am I in?
+Show me to room 2333
+How do I get to 2333
+How do I get to room 2333
+Show me to 2333
+Where is 2333
+Take me to room 2333
+Take me to 2333
+Move to room 2333
+Move to 2333
+Show me to room 2335
+How do I get to 2335
+How do I get to room 2335
+Show me to 2335
+Where is 2335
+Take me to room 2335
+Take me to 2335
+Move to room 2335
+Move to 2335
+Show me to room 2341
+How do I get to 2341
+How do I get to room 2341
+Show me to 2341
+Where is 2341
+Take me to room 2341
+Take me to 2341
+Move to room 2341
+Move to 2341
+Show me to room 2337
+How do I get to 2337
+How do I get to room 2337
+Show me to 2337
+Where is 2337
+Take me to room 2337
+Take me to 2337
+Move to room 2337
+Move to 2337
+Show me to room 2347
+How do I get to 2347
+How do I get to room 2347
+Show me to 2347
+Where is 2347
+Take me to room 2347
+Take me to 2347
+Move to room 2347
+Move to 2347
+Show me to room 2359
+How do I get to 2359
+How do I get to room 2359
+Show me to 2359
+Where is 2359
+Take me to room 2359
+Take me to 2359
+Move to room 2359
+Move to 2359
+Show me to room 2355
+How do I get to 2355
+How do I get to room 2355
+Show me to 2355
+Where is 2355
+Take me to room 2355
+Take me to 2355
+Move to room 2355
+Move to 2355
+Show me to room 2357
+How do I get to 2357
+How do I get to room 2357
+Show me to 2357
+Where is 2357
+Take me to room 2357
+Take me to 2357
+Move to room 2357
+Move to 2357
+Show me to room 2363
+How do I get to 2363
+How do I get to room 2363
+Show me to 2363
+Where is 2363
+Take me to room 2363
+Take me to 2363
+Move to room 2363
+Move to 2363
+Show me to room 2361
+How do I get to 2361
+How do I get to room 2361
+Show me to 2361
+Where is 2361
+Take me to room 2361
+Take me to 2361
+Move to room 2361
+Move to 2361
+Show me to room 2332
+How do I get to 2332
+How do I get to room 2332
+Show me to 2332
+Where is 2332
+Take me to room 2332
+Take me to 2332
+Move to room 2332
+Move to 2332
+Show me to room 2334
+How do I get to 2334
+How do I get to room 2334
+Show me to 2334
+Where is 2334
+Take me to room 2334
+Take me to 2334
+Move to room 2334
+Move to 2334
+Show me to room 2336
+How do I get to 2336
+How do I get to room 2336
+Show me to 2336
+Where is 2336
+Take me to room 2336
+Take me to 2336
+Move to room 2336
+Move to 2336
+Show me to room 2338
+How do I get to 2338
+How do I get to room 2338
+Show me to 2338
+Where is 2338
+Take me to room 2338
+Take me to 2338
+Move to room 2338
+Move to 2338
+Show me to room 2340
+How do I get to 2340
+How do I get to room 2340
+Show me to 2340
+Where is 2340
+Take me to room 2340
+Take me to 2340
+Move to room 2340
+Move to 2340
+Show me to room 2342
+How do I get to 2342
+How do I get to room 2342
+Show me to 2342
+Where is 2342
+Take me to room 2342
+Take me to 2342
+Move to room 2342
+Move to 2342
+Show me to room 2344
+How do I get to 2344
+How do I get to room 2344
+Show me to 2344
+Where is 2344
+Take me to room 2344
+Take me to 2344
+Move to room 2344
+Move to 2344
+Show me to room 2346
+How do I get to 2346
+How do I get to room 2346
+Show me to 2346
+Where is 2346
+Take me to room 2346
+Take me to 2346
+Move to room 2346
+Move to 2346
+Show me to room 2350
+How do I get to 2350
+How do I get to room 2350
+Show me to 2350
+Where is 2350
+Take me to room 2350
+Take me to 2350
+Move to room 2350
+Move to 2350
+Show me to room 2356
+How do I get to 2356
+How do I get to room 2356
+Show me to 2356
+Where is 2356
+Take me to room 2356
+Take me to 2356
+Move to room 2356
+Move to 2356
+Show me to room 2358
+How do I get to 2358
+How do I get to room 2358
+Show me to 2358
+Where is 2358
+Take me to room 2358
+Take me to 2358
+Move to room 2358
+Move to 2358
+Show me to room 2360
+How do I get to 2360
+How do I get to room 2360
+Show me to 2360
+Where is 2360
+Take me to room 2360
+Take me to 2360
+Move to room 2360
+Move to 2360
+Show me to room 2362
+How do I get to 2362
+How do I get to room 2362
+Show me to 2362
+Where is 2362
+Take me to room 2362
+Take me to 2362
+Move to room 2362
+Move to 2362
diff --git a/models/corpus/corpus.txt b/models/corpus/corpus.txt
new file mode 100644
index 0000000..f7a1567
--- /dev/null
+++ b/models/corpus/corpus.txt
@@ -0,0 +1,228 @@
+how are you today?
+Klauba, how do I get to the atrium?
+Where am I?
+Klauba, where am I?
+What room am I in?
+Klauba, what room am I in?
+Go forward
+Go backward
+Stop
+Stop moving
+Klauba, stop
+Go left
+Go Right
+Move left
+Move right
+Move forward
+Move backward
+Hi Klauba
+Hello Klauba
+How are you today, Klauba?
+What building am I in?
+Show me to room 2333
+How do I get to 2333
+How do I get to room 2333
+Show me to 2333
+Where is 2333
+Take me to room 2333
+Take me to 2333
+Move to room 2333
+Move to 2333
+Show me to room 2335
+How do I get to 2335
+How do I get to room 2335
+Show me to 2335
+Where is 2335
+Take me to room 2335
+Take me to 2335
+Move to room 2335
+Move to 2335
+Show me to room 2341
+How do I get to 2341
+How do I get to room 2341
+Show me to 2341
+Where is 2341
+Take me to room 2341
+Take me to 2341
+Move to room 2341
+Move to 2341
+Show me to room 2337
+How do I get to 2337
+How do I get to room 2337
+Show me to 2337
+Where is 2337
+Take me to room 2337
+Take me to 2337
+Move to room 2337
+Move to 2337
+Show me to room 2347
+How do I get to 2347
+How do I get to room 2347
+Show me to 2347
+Where is 2347
+Take me to room 2347
+Take me to 2347
+Move to room 2347
+Move to 2347
+Show me to room 2359
+How do I get to 2359
+How do I get to room 2359
+Show me to 2359
+Where is 2359
+Take me to room 2359
+Take me to 2359
+Move to room 2359
+Move to 2359
+Show me to room 2355
+How do I get to 2355
+How do I get to room 2355
+Show me to 2355
+Where is 2355
+Take me to room 2355
+Take me to 2355
+Move to room 2355
+Move to 2355
+Show me to room 2357
+How do I get to 2357
+How do I get to room 2357
+Show me to 2357
+Where is 2357
+Take me to room 2357
+Take me to 2357
+Move to room 2357
+Move to 2357
+Show me to room 2363
+How do I get to 2363
+How do I get to room 2363
+Show me to 2363
+Where is 2363
+Take me to room 2363
+Take me to 2363
+Move to room 2363
+Move to 2363
+Show me to room 2361
+How do I get to 2361
+How do I get to room 2361
+Show me to 2361
+Where is 2361
+Take me to room 2361
+Take me to 2361
+Move to room 2361
+Move to 2361
+Show me to room 2332
+How do I get to 2332
+How do I get to room 2332
+Show me to 2332
+Where is 2332
+Take me to room 2332
+Take me to 2332
+Move to room 2332
+Move to 2332
+Show me to room 2334
+How do I get to 2334
+How do I get to room 2334
+Show me to 2334
+Where is 2334
+Take me to room 2334
+Take me to 2334
+Move to room 2334
+Move to 2334
+Show me to room 2336
+How do I get to 2336
+How do I get to room 2336
+Show me to 2336
+Where is 2336
+Take me to room 2336
+Take me to 2336
+Move to room 2336
+Move to 2336
+Show me to room 2338
+How do I get to 2338
+How do I get to room 2338
+Show me to 2338
+Where is 2338
+Take me to room 2338
+Take me to 2338
+Move to room 2338
+Move to 2338
+Show me to room 2340
+How do I get to 2340
+How do I get to room 2340
+Show me to 2340
+Where is 2340
+Take me to room 2340
+Take me to 2340
+Move to room 2340
+Move to 2340
+Show me to room 2342
+How do I get to 2342
+How do I get to room 2342
+Show me to 2342
+Where is 2342
+Take me to room 2342
+Take me to 2342
+Move to room 2342
+Move to 2342
+Show me to room 2344
+How do I get to 2344
+How do I get to room 2344
+Show me to 2344
+Where is 2344
+Take me to room 2344
+Take me to 2344
+Move to room 2344
+Move to 2344
+Show me to room 2346
+How do I get to 2346
+How do I get to room 2346
+Show me to 2346
+Where is 2346
+Take me to room 2346
+Take me to 2346
+Move to room 2346
+Move to 2346
+Show me to room 2350
+How do I get to 2350
+How do I get to room 2350
+Show me to 2350
+Where is 2350
+Take me to room 2350
+Take me to 2350
+Move to room 2350
+Move to 2350
+Show me to room 2356
+How do I get to 2356
+How do I get to room 2356
+Show me to 2356
+Where is 2356
+Take me to room 2356
+Take me to 2356
+Move to room 2356
+Move to 2356
+Show me to room 2358
+How do I get to 2358
+How do I get to room 2358
+Show me to 2358
+Where is 2358
+Take me to room 2358
+Take me to 2358
+Move to room 2358
+Move to 2358
+Show me to room 2360
+How do I get to 2360
+How do I get to room 2360
+Show me to 2360
+Where is 2360
+Take me to room 2360
+Take me to 2360
+Move to room 2360
+Move to 2360
+Show me to room 2362
+How do I get to 2362
+How do I get to room 2362
+Show me to 2362
+Where is 2362
+Take me to room 2362
+Take me to 2362
+Move to room 2362
+Move to 2362
diff --git a/models/corpus/corpus_generator.py b/models/corpus/corpus_generator.py
new file mode 100644
index 0000000..df38937
--- /dev/null
+++ b/models/corpus/corpus_generator.py
@@ -0,0 +1,42 @@
+templates = [
+ "Show me to room {{ROOM}}",
+ "How do I get to {{ROOM}}",
+ "How do I get to room {{ROOM}}",
+ "Show me to {{ROOM}}",
+ "Where is {{ROOM}}",
+ "Take me to room {{ROOM}}",
+ "Take me to {{ROOM}}",
+ "Move to room {{ROOM}}",
+ "Move to {{ROOM}}"
+]
+
+def append_general_phrases(corpus_file):
+ phrases_file = open('general-phrases.txt', 'r')
+ for phrase in phrases_file:
+ phrase = phrase.strip()
+ corpus_file.write(phrase + '\n')
+ phrases_file.close()
+
+def generate_phrases_for_room(room_number):
+ output = []
+ for template in templates:
+ phrase = template.replace("{{ROOM}}", room_number)
+ output.append(phrase)
+ return output
+
+def read_in_rooms(corpus_file):
+ room_file = open('rooms.txt', 'r')
+ for room in room_file:
+ room = room.strip()
+ phrases = generate_phrases_for_room(room)
+ for phrase in phrases:
+ corpus_file.write(phrase + '\n')
+ room_file.close()
+
+
+corpus_file = open("corpus.txt", "w")
+
+append_general_phrases(corpus_file)
+read_in_rooms(corpus_file)
+
+corpus_file.close()
diff --git a/models/corpus/general-phrases.txt b/models/corpus/general-phrases.txt
new file mode 100644
index 0000000..aa2d9d2
--- /dev/null
+++ b/models/corpus/general-phrases.txt
@@ -0,0 +1,21 @@
+how are you today?
+Klauba, how do I get to the atrium?
+Where am I?
+Klauba, where am I?
+What room am I in?
+Klauba, what room am I in?
+Go forward
+Go backward
+Stop
+Stop moving
+Klauba, stop
+Go left
+Go Right
+Move left
+Move right
+Move forward
+Move backward
+Hi Klauba
+Hello Klauba
+How are you today, Klauba?
+What building am I in?
diff --git a/models/corpus/rooms.txt b/models/corpus/rooms.txt
new file mode 100644
index 0000000..d102e64
--- /dev/null
+++ b/models/corpus/rooms.txt
@@ -0,0 +1,23 @@
+2333
+2335
+2341
+2337
+2347
+2359
+2355
+2357
+2363
+2361
+2332
+2334
+2336
+2338
+2340
+2342
+2344
+2346
+2350
+2356
+2358
+2360
+2362
diff --git a/noiseClean.py b/noiseClean.py
new file mode 100644
index 0000000..f85656f
--- /dev/null
+++ b/noiseClean.py
@@ -0,0 +1,62 @@
+# import matplotlib.pyplot as plt
+import numpy as np
+import wave
+import sys
+import math
+import contextlib
+
+fname = 'inputs/noisy.wav'
+outname = 'inputs/filtered.wav'
+
+cutOffFrequency = 400.0
+
+# from http://stackoverflow.com/questions/13728392/moving-average-or-running-mean
+def running_mean(x, windowSize):
+ cumsum = np.cumsum(np.insert(x, 0, 0))
+ return (cumsum[windowSize:] - cumsum[:-windowSize]) / windowSize
+
+# from http://stackoverflow.com/questions/2226853/interpreting-wav-data/2227174#2227174
+def interpret_wav(raw_bytes, n_frames, n_channels, sample_width, interleaved = True):
+
+ if sample_width == 1:
+ dtype = np.uint8 # unsigned char
+ elif sample_width == 2:
+ dtype = np.int16 # signed 2-byte short
+ else:
+ raise ValueError("Only supports 8 and 16 bit audio formats.")
+
+ channels = np.fromstring(raw_bytes, dtype=dtype)
+
+ if interleaved:
+ # channels are interleaved, i.e. sample N of channel M follows sample N of channel M-1 in raw data
+ channels.shape = (n_frames, n_channels)
+ channels = channels.T
+ else:
+ # channels are not interleaved. All samples from channel M occur before all samples from channel M-1
+ channels.shape = (n_channels, n_frames)
+
+ return channels
+
+with contextlib.closing(wave.open(fname,'rb')) as spf:
+ sampleRate = spf.getframerate()
+ ampWidth = spf.getsampwidth()
+ nChannels = spf.getnchannels()
+ nFrames = spf.getnframes()
+
+ # Extract Raw Audio from multi-channel Wav File
+ signal = spf.readframes(nFrames*nChannels)
+ spf.close()
+ channels = interpret_wav(signal, nFrames, nChannels, ampWidth, True)
+
+ # get window size
+ # from http://dsp.stackexchange.com/questions/9966/what-is-the-cut-off-frequency-of-a-moving-average-filter
+ freqRatio = (cutOffFrequency/sampleRate)
+ N = int(math.sqrt(0.196196 + freqRatio**2)/freqRatio)
+
+ # Use moviung average (only on first channel)
+ filtered = running_mean(channels[0], N).astype(channels.dtype)
+
+ wav_file = wave.open(outname, "w")
+ wav_file.setparams((1, ampWidth, sampleRate, nFrames, spf.getcomptype(), spf.getcompname()))
+ wav_file.writeframes(filtered.tobytes('C'))
+ wav_file.close()
diff --git a/pocketsphinx-5prealpha/Makefile b/pocketsphinx-5prealpha/Makefile
index 470a5c4..c97a434 100644
--- a/pocketsphinx-5prealpha/Makefile
+++ b/pocketsphinx-5prealpha/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -169,7 +169,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- cscope distdir dist dist-all distcheck
+ cscope distdir distdir-am dist dist-all distcheck
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -236,19 +236,19 @@ distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -276,7 +276,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -284,7 +284,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -318,15 +318,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -355,7 +355,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -422,8 +422,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -573,7 +573,10 @@ distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
$(am__remove_distdir)
test -d "$(distdir)" || mkdir "$(distdir)"
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
@@ -638,7 +641,7 @@ distdir: $(DISTFILES)
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+ tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
@@ -664,7 +667,7 @@ dist-shar: distdir
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
+ shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
@@ -682,7 +685,7 @@ dist dist-all:
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
@@ -692,7 +695,7 @@ distcheck: dist
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
esac
diff --git a/pocketsphinx-5prealpha/Makefile.in b/pocketsphinx-5prealpha/Makefile.in
index 1ee36ea..1fea8e4 100644
--- a/pocketsphinx-5prealpha/Makefile.in
+++ b/pocketsphinx-5prealpha/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -169,7 +169,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- cscope distdir dist dist-all distcheck
+ cscope distdir distdir-am dist dist-all distcheck
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -422,8 +422,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -573,7 +573,10 @@ distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
$(am__remove_distdir)
test -d "$(distdir)" || mkdir "$(distdir)"
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
@@ -638,7 +641,7 @@ distdir: $(DISTFILES)
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+ tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
@@ -664,7 +667,7 @@ dist-shar: distdir
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
+ shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
@@ -682,7 +685,7 @@ dist dist-all:
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
@@ -692,7 +695,7 @@ distcheck: dist
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
esac
diff --git a/pocketsphinx-5prealpha/aclocal.m4 b/pocketsphinx-5prealpha/aclocal.m4
index 73b59f5..a321a21 100644
--- a/pocketsphinx-5prealpha/aclocal.m4
+++ b/pocketsphinx-5prealpha/aclocal.m4
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.15 -*- Autoconf -*-
+# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -20,7 +20,7 @@ You have another version of autoconf. It may work, but is not guaranteed to.
If you have problems, you may need to regenerate the build system entirely.
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
-# Copyright (C) 2002-2014 Free Software Foundation, Inc.
+# Copyright (C) 2002-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -32,10 +32,10 @@ To do so, use the procedure documented by the package, typically 'autoreconf'.])
# generated from the m4 files accompanying Automake X.Y.
# (This private macro should not be called outside this file.)
AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.15'
+[am__api_version='1.16'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro.
-m4_if([$1], [1.15], [],
+m4_if([$1], [1.16.1], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
@@ -51,14 +51,14 @@ m4_define([_AM_AUTOCONF_VERSION], [])
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.15])dnl
+[AM_AUTOMAKE_VERSION([1.16.1])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -110,7 +110,7 @@ am_aux_dir=`cd "$ac_aux_dir" && pwd`
# AM_CONDITIONAL -*- Autoconf -*-
-# Copyright (C) 1997-2014 Free Software Foundation, Inc.
+# Copyright (C) 1997-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -141,7 +141,7 @@ AC_CONFIG_COMMANDS_PRE(
Usually this means the macro was only invoked conditionally.]])
fi])])
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -332,13 +332,12 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl
# Generate code to set up dependency tracking. -*- Autoconf -*-
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-
# _AM_OUTPUT_DEPENDENCY_COMMANDS
# ------------------------------
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
@@ -346,49 +345,41 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ AS_CASE([$CONFIG_FILES],
+ [*\'*], [eval set x "$CONFIG_FILES"],
+ [*], [set x $CONFIG_FILES])
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`AS_DIRNAME("$mf")`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`AS_DIRNAME(["$file"])`
- AS_MKDIR_P([$dirpart/$fdir])
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`AS_DIRNAME(["$am_mf"])`
+ am_filepart=`AS_BASENAME(["$am_mf"])`
+ AM_RUN_LOG([cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles]) || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).])
+ fi
+ AS_UNSET([am_dirpart])
+ AS_UNSET([am_filepart])
+ AS_UNSET([am_mf])
+ AS_UNSET([am_rc])
+ rm -f conftest-deps.mk
}
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
@@ -397,18 +388,17 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
# -----------------------------
# This macro should only be invoked once -- use via AC_REQUIRE.
#
-# This code is only required when automatic dependency tracking
-# is enabled. FIXME. This creates each '.P' file that we will
-# need in order to bootstrap the dependency handling code.
+# This code is only required when automatic dependency tracking is enabled.
+# This creates each '.Po' and '.Plo' makefile fragment that we'll need in
+# order to bootstrap the dependency handling code.
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
[AC_CONFIG_COMMANDS([depfiles],
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
-])
+ [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
# Do all the work for Automake. -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -495,8 +485,8 @@ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
# We need awk for the "check" target (and possibly the TAP driver). The
# system "awk" is bad on some platforms.
@@ -563,7 +553,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -605,7 +595,7 @@ for _am_header in $config_headers :; do
done
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -626,7 +616,7 @@ if test x"${install_sh+set}" != xset; then
fi
AC_SUBST([install_sh])])
-# Copyright (C) 2003-2014 Free Software Foundation, Inc.
+# Copyright (C) 2003-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -647,7 +637,7 @@ AC_SUBST([am__leading_dot])])
# Check to see how 'make' treats includes. -*- Autoconf -*-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -655,49 +645,42 @@ AC_SUBST([am__leading_dot])])
# AM_MAKE_INCLUDE()
# -----------------
-# Check to see how make treats includes.
+# Check whether make has an 'include' directive that can support all
+# the idioms we need for our automatic dependency tracking code.
AC_DEFUN([AM_MAKE_INCLUDE],
-[am_make=${MAKE-make}
-cat > confinc << 'END'
+[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-AC_MSG_CHECKING([for style of include used by $am_make])
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
- ;;
- esac
-fi
-AC_SUBST([am__include])
-AC_SUBST([am__quote])
-AC_MSG_RESULT([$_am_result])
-rm -f confinc confmf
-])
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
+ AS_CASE([$?:`cat confinc.out 2>/dev/null`],
+ ['0:this is the am__doit target'],
+ [AS_CASE([$s],
+ [BSD], [am__include='.include' am__quote='"'],
+ [am__include='include' am__quote=''])])
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+AC_MSG_RESULT([${_am_result}])
+AC_SUBST([am__include])])
+AC_SUBST([am__quote])])
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
-# Copyright (C) 1997-2014 Free Software Foundation, Inc.
+# Copyright (C) 1997-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -736,7 +719,7 @@ fi
# Helper functions for option handling. -*- Autoconf -*-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -765,7 +748,7 @@ AC_DEFUN([_AM_SET_OPTIONS],
AC_DEFUN([_AM_IF_OPTION],
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -812,7 +795,7 @@ AC_LANG_POP([C])])
# For backward compatibility.
AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -846,8 +829,11 @@ AC_DEFUN([AM_PATH_PYTHON],
dnl Find a Python interpreter. Python versions prior to 2.0 are not
dnl supported. (2.0 was released on October 16, 2000).
m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
-[python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl
- python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0])
+[python python2 python3 dnl
+ python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 dnl
+ python3.2 python3.1 python3.0 dnl
+ python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 dnl
+ python2.0])
AC_ARG_VAR([PYTHON], [the Python interpreter])
@@ -1047,7 +1033,7 @@ for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
sys.exit(sys.hexversion < minverhex)"
AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1066,7 +1052,7 @@ AC_DEFUN([AM_RUN_LOG],
# Check to make sure that the build environment is sane. -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1147,7 +1133,7 @@ AC_CONFIG_COMMANDS_PRE(
rm -f conftest.file
])
-# Copyright (C) 2009-2014 Free Software Foundation, Inc.
+# Copyright (C) 2009-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1207,7 +1193,7 @@ AC_SUBST([AM_BACKSLASH])dnl
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
])
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1235,7 +1221,7 @@ fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
AC_SUBST([INSTALL_STRIP_PROGRAM])])
-# Copyright (C) 2006-2014 Free Software Foundation, Inc.
+# Copyright (C) 2006-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1254,7 +1240,7 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
# Check how to create a tarball. -*- Autoconf -*-
-# Copyright (C) 2004-2014 Free Software Foundation, Inc.
+# Copyright (C) 2004-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
diff --git a/pocketsphinx-5prealpha/autom4te.cache/output.0 b/pocketsphinx-5prealpha/autom4te.cache/output.0
index 3a7a2c3..561f82e 100644
--- a/pocketsphinx-5prealpha/autom4te.cache/output.0
+++ b/pocketsphinx-5prealpha/autom4te.cache/output.0
@@ -697,7 +697,6 @@ am__nodep
AMDEPBACKSLASH
AMDEP_FALSE
AMDEP_TRUE
-am__quote
am__include
DEPDIR
OBJEXT
@@ -780,7 +779,8 @@ PACKAGE_VERSION
PACKAGE_TARNAME
PACKAGE_NAME
PATH_SEPARATOR
-SHELL'
+SHELL
+am__quote'
ac_subst_files=''
ac_user_opts='
enable_option_checking
@@ -2517,7 +2517,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers include/config.h"
-am__api_version='1.15'
+am__api_version='1.16'
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
@@ -3053,8 +3053,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
mkdir_p='$(MKDIR_P)'
# We need awk for the "check" target (and possibly the TAP driver). The
@@ -3105,7 +3105,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -4042,45 +4042,45 @@ DEPDIR="${am__leading_dot}deps"
ac_config_commands="$ac_config_commands depfiles"
-
-am_make=${MAKE-make}
-cat > confinc << 'END'
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
+$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
+ (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ case $?:`cat confinc.out 2>/dev/null` in @%:@(
+ '0:this is the am__doit target') :
+ case $s in @%:@(
+ BSD) :
+ am__include='.include' am__quote='"' ;; @%:@(
+ *) :
+ am__include='include' am__quote='' ;;
+esac ;; @%:@(
+ *) :
;;
- esac
-fi
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-$as_echo "$_am_result" >&6; }
-rm -f confinc confmf
+esac
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
+$as_echo "${_am_result}" >&6; }
@%:@ Check whether --enable-dependency-tracking was given.
if test "${enable_dependency_tracking+set}" = set; then :
@@ -6643,11 +6643,8 @@ _LT_EOF
test $ac_status = 0; }; then
# Now try to grab the symbols.
nlist=conftest.nm
- if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5
- (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && test -s "$nlist"; then
+ $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5
+ if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
mv -f "$nlist"T "$nlist"
@@ -12424,7 +12421,7 @@ if ${am_cv_pathless_PYTHON+:} false; then :
$as_echo_n "(cached) " >&6
else
- for am_cv_pathless_PYTHON in python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
+ for am_cv_pathless_PYTHON in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
test "$am_cv_pathless_PYTHON" = none && break
prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
@@ -14234,7 +14231,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
#
# INIT-COMMANDS
#
-AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
+AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -15146,29 +15143,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ case $CONFIG_FILES in @%:@(
+ *\'*) :
+ eval set x "$CONFIG_FILES" ;; @%:@(
+ *) :
+ set x $CONFIG_FILES ;; @%:@(
+ *) :
+ ;;
+esac
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`$as_dirname -- "$am_mf" ||
+$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$am_mf" : 'X\(//\)[^/]' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$am_mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -15186,53 +15189,48 @@ $as_echo X"$mf" |
q
}
s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
+ am_filepart=`$as_basename -- "$am_mf" ||
+$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$am_mf" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
- /^X\(\/\/\)$/{
+ /^X\/\(\/\/\)$/{
s//\1/
q
}
- /^X\(\/\).*/{
+ /^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles" >&5
+ (cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ { am_dirpart=; unset am_dirpart;}
+ { am_filepart=; unset am_filepart;}
+ { am_mf=; unset am_mf;}
+ { am_rc=; unset am_rc;}
+ rm -f conftest-deps.mk
}
;;
"libtool":C)
@@ -15250,7 +15248,6 @@ $as_echo X"$file" |
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
diff --git a/pocketsphinx-5prealpha/autom4te.cache/output.1 b/pocketsphinx-5prealpha/autom4te.cache/output.1
index 3a7a2c3..561f82e 100644
--- a/pocketsphinx-5prealpha/autom4te.cache/output.1
+++ b/pocketsphinx-5prealpha/autom4te.cache/output.1
@@ -697,7 +697,6 @@ am__nodep
AMDEPBACKSLASH
AMDEP_FALSE
AMDEP_TRUE
-am__quote
am__include
DEPDIR
OBJEXT
@@ -780,7 +779,8 @@ PACKAGE_VERSION
PACKAGE_TARNAME
PACKAGE_NAME
PATH_SEPARATOR
-SHELL'
+SHELL
+am__quote'
ac_subst_files=''
ac_user_opts='
enable_option_checking
@@ -2517,7 +2517,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers include/config.h"
-am__api_version='1.15'
+am__api_version='1.16'
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
@@ -3053,8 +3053,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
mkdir_p='$(MKDIR_P)'
# We need awk for the "check" target (and possibly the TAP driver). The
@@ -3105,7 +3105,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -4042,45 +4042,45 @@ DEPDIR="${am__leading_dot}deps"
ac_config_commands="$ac_config_commands depfiles"
-
-am_make=${MAKE-make}
-cat > confinc << 'END'
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
+$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
+ (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ case $?:`cat confinc.out 2>/dev/null` in @%:@(
+ '0:this is the am__doit target') :
+ case $s in @%:@(
+ BSD) :
+ am__include='.include' am__quote='"' ;; @%:@(
+ *) :
+ am__include='include' am__quote='' ;;
+esac ;; @%:@(
+ *) :
;;
- esac
-fi
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-$as_echo "$_am_result" >&6; }
-rm -f confinc confmf
+esac
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
+$as_echo "${_am_result}" >&6; }
@%:@ Check whether --enable-dependency-tracking was given.
if test "${enable_dependency_tracking+set}" = set; then :
@@ -6643,11 +6643,8 @@ _LT_EOF
test $ac_status = 0; }; then
# Now try to grab the symbols.
nlist=conftest.nm
- if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5
- (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && test -s "$nlist"; then
+ $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5
+ if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
mv -f "$nlist"T "$nlist"
@@ -12424,7 +12421,7 @@ if ${am_cv_pathless_PYTHON+:} false; then :
$as_echo_n "(cached) " >&6
else
- for am_cv_pathless_PYTHON in python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
+ for am_cv_pathless_PYTHON in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
test "$am_cv_pathless_PYTHON" = none && break
prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
@@ -14234,7 +14231,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
#
# INIT-COMMANDS
#
-AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
+AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -15146,29 +15143,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ case $CONFIG_FILES in @%:@(
+ *\'*) :
+ eval set x "$CONFIG_FILES" ;; @%:@(
+ *) :
+ set x $CONFIG_FILES ;; @%:@(
+ *) :
+ ;;
+esac
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`$as_dirname -- "$am_mf" ||
+$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$am_mf" : 'X\(//\)[^/]' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$am_mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -15186,53 +15189,48 @@ $as_echo X"$mf" |
q
}
s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
+ am_filepart=`$as_basename -- "$am_mf" ||
+$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$am_mf" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
- /^X\(\/\/\)$/{
+ /^X\/\(\/\/\)$/{
s//\1/
q
}
- /^X\(\/\).*/{
+ /^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles" >&5
+ (cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ { am_dirpart=; unset am_dirpart;}
+ { am_filepart=; unset am_filepart;}
+ { am_mf=; unset am_mf;}
+ { am_rc=; unset am_rc;}
+ rm -f conftest-deps.mk
}
;;
"libtool":C)
@@ -15250,7 +15248,6 @@ $as_echo X"$file" |
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
diff --git a/pocketsphinx-5prealpha/autom4te.cache/requests b/pocketsphinx-5prealpha/autom4te.cache/requests
index e483a37..f163594 100644
--- a/pocketsphinx-5prealpha/autom4te.cache/requests
+++ b/pocketsphinx-5prealpha/autom4te.cache/requests
@@ -1,4 +1,4 @@
-# This file was generated by Autom4te Fri Oct 23 20:57:39 UTC 2015.
+# This file was generated by Autom4te Sun Aug 20 18:29:13 UTC 2017.
# It contains the lists of macros which have been traced.
# It can be safely removed.
@@ -12,28 +12,28 @@
[
'/usr/share/autoconf/autoconf/autoconf.m4f',
'-',
- '/usr/share/aclocal-1.15/internal/ac-config-macro-dirs.m4',
+ '/usr/share/aclocal-1.16/internal/ac-config-macro-dirs.m4',
'/usr/share/aclocal/ltargz.m4',
'/usr/share/aclocal/ltdl.m4',
- '/usr/share/aclocal-1.15/amversion.m4',
- '/usr/share/aclocal-1.15/auxdir.m4',
- '/usr/share/aclocal-1.15/cond.m4',
- '/usr/share/aclocal-1.15/depend.m4',
- '/usr/share/aclocal-1.15/depout.m4',
- '/usr/share/aclocal-1.15/init.m4',
- '/usr/share/aclocal-1.15/install-sh.m4',
- '/usr/share/aclocal-1.15/lead-dot.m4',
- '/usr/share/aclocal-1.15/make.m4',
- '/usr/share/aclocal-1.15/missing.m4',
- '/usr/share/aclocal-1.15/options.m4',
- '/usr/share/aclocal-1.15/prog-cc-c-o.m4',
- '/usr/share/aclocal-1.15/python.m4',
- '/usr/share/aclocal-1.15/runlog.m4',
- '/usr/share/aclocal-1.15/sanity.m4',
- '/usr/share/aclocal-1.15/silent.m4',
- '/usr/share/aclocal-1.15/strip.m4',
- '/usr/share/aclocal-1.15/substnot.m4',
- '/usr/share/aclocal-1.15/tar.m4',
+ '/usr/share/aclocal-1.16/amversion.m4',
+ '/usr/share/aclocal-1.16/auxdir.m4',
+ '/usr/share/aclocal-1.16/cond.m4',
+ '/usr/share/aclocal-1.16/depend.m4',
+ '/usr/share/aclocal-1.16/depout.m4',
+ '/usr/share/aclocal-1.16/init.m4',
+ '/usr/share/aclocal-1.16/install-sh.m4',
+ '/usr/share/aclocal-1.16/lead-dot.m4',
+ '/usr/share/aclocal-1.16/make.m4',
+ '/usr/share/aclocal-1.16/missing.m4',
+ '/usr/share/aclocal-1.16/options.m4',
+ '/usr/share/aclocal-1.16/prog-cc-c-o.m4',
+ '/usr/share/aclocal-1.16/python.m4',
+ '/usr/share/aclocal-1.16/runlog.m4',
+ '/usr/share/aclocal-1.16/sanity.m4',
+ '/usr/share/aclocal-1.16/silent.m4',
+ '/usr/share/aclocal-1.16/strip.m4',
+ '/usr/share/aclocal-1.16/substnot.m4',
+ '/usr/share/aclocal-1.16/tar.m4',
'm4/ax_pkg_swig.m4',
'm4/ax_python_devel.m4',
'm4/libtool.m4',
@@ -45,194 +45,194 @@
'configure.ac'
],
{
- 'AC_LIBTOOL_PICMODE' => 1,
- 'AM_ENABLE_SHARED' => 1,
- 'LT_CONFIG_LTDL_DIR' => 1,
- 'AC_CHECK_LIBM' => 1,
- 'AC_PROG_LD' => 1,
- 'include' => 1,
- 'LT_PATH_NM' => 1,
- 'AM_SILENT_RULES' => 1,
- 'LT_AC_PROG_RC' => 1,
+ 'AM_PATH_PYTHON' => 1,
+ '_LT_PREPARE_SED_QUOTE_VARS' => 1,
+ 'AC_LIBTOOL_DLOPEN' => 1,
'AM_DISABLE_STATIC' => 1,
- 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
- 'AC_LTDL_PREOPEN' => 1,
- 'AM_CONDITIONAL' => 1,
- 'AX_PYTHON_DEVEL' => 1,
- 'AC_PROG_NM' => 1,
- 'PKG_CHECK_MODULES' => 1,
- '_LT_PROG_F77' => 1,
- 'AC_LIBTOOL_CONFIG' => 1,
- '_LT_AC_TAGVAR' => 1,
- 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
- 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
- '_LT_AC_SYS_COMPILER' => 1,
- 'LTOBSOLETE_VERSION' => 1,
- 'AC_PATH_MAGIC' => 1,
- 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
- 'AC_LTDL_SHLIBPATH' => 1,
- '_AM_CONFIG_MACRO_DIRS' => 1,
- 'AC_LIBTOOL_F77' => 1,
- 'AM_DISABLE_SHARED' => 1,
- 'LT_OUTPUT' => 1,
- 'm4_pattern_allow' => 1,
- 'AC_PYTHON_DEVEL' => 1,
- 'AC_PROG_LD_GNU' => 1,
- 'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
- 'LT_PROG_RC' => 1,
- 'LT_AC_PROG_SED' => 1,
- 'AM_INIT_AUTOMAKE' => 1,
- 'AU_DEFUN' => 1,
- '_LT_AC_LANG_GCJ' => 1,
- 'AC_LIB_LTDL' => 1,
- 'AM_RUN_LOG' => 1,
- 'LT_SYS_DLOPEN_SELF' => 1,
- 'LTOPTIONS_VERSION' => 1,
- 'AC_LIBTOOL_LINKER_OPTION' => 1,
+ 'LT_SYS_SYMBOL_USCORE' => 1,
+ 'AC_CHECK_LIBM' => 1,
'AC_LIBTOOL_GCJ' => 1,
- 'AM_ENABLE_STATIC' => 1,
- 'AC_LIBTOOL_SETUP' => 1,
- 'LT_CMD_MAX_LEN' => 1,
+ 'AC_CONFIG_MACRO_DIR' => 1,
'_AM_PROG_TAR' => 1,
- 'AM_DEP_TRACK' => 1,
- 'AM_MISSING_HAS_RUN' => 1,
- '_LT_CC_BASENAME' => 1,
+ 'LT_LIB_DLLOAD' => 1,
+ 'AX_PYTHON_DEVEL' => 1,
+ 'LT_CMD_MAX_LEN' => 1,
+ 'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
+ 'AC_LIBTOOL_WIN32_DLL' => 1,
'_LT_PROG_LTMAIN' => 1,
- '_LT_AC_TRY_DLOPEN_SELF' => 1,
- 'AC_CONFIG_MACRO_DIR_TRACE' => 1,
+ 'LT_PROG_RC' => 1,
+ '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
+ 'AM_DISABLE_SHARED' => 1,
+ 'AC_LIBTOOL_RC' => 1,
+ 'AM_MISSING_HAS_RUN' => 1,
+ 'LTOPTIONS_VERSION' => 1,
+ '_LT_AC_SYS_COMPILER' => 1,
+ 'AC_PYTHON_DEVEL' => 1,
+ '_LT_AC_LANG_C_CONFIG' => 1,
+ '_LT_AC_LANG_F77_CONFIG' => 1,
+ 'AC_LIBTOOL_CXX' => 1,
+ 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
+ 'AC_PATH_TOOL_PREFIX' => 1,
+ '_AM_SUBST_NOTMAKE' => 1,
'AC_LTDL_SYSSEARCHPATH' => 1,
- 'LTSUGAR_VERSION' => 1,
+ '_LT_WITH_SYSROOT' => 1,
+ '_LT_AC_CHECK_DLFCN' => 1,
+ '_LT_LIBOBJ' => 1,
+ 'AC_LIBTOOL_OBJDIR' => 1,
+ '_LT_COMPILER_BOILERPLATE' => 1,
+ 'AM_SUBST_NOTMAKE' => 1,
'AM_MISSING_PROG' => 1,
- 'LT_SYS_MODULE_EXT' => 1,
- 'AM_PROG_NM' => 1,
- 'AC_LTDL_SYMBOL_USCORE' => 1,
- '_LT_PATH_TOOL_PREFIX' => 1,
- 'AM_AUX_DIR_EXPAND' => 1,
- 'AM_PROG_CC_C_O' => 1,
- 'AM_PATH_PYTHON' => 1,
- 'AC_LTDL_ENABLE_INSTALL' => 1,
- '_LT_AC_LANG_CXX' => 1,
+ 'LT_SYS_MODULE_PATH' => 1,
+ 'PKG_CHECK_MODULES' => 1,
+ '_LT_PROG_F77' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
+ 'AC_LIB_LTDL' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ '_AM_PROG_CC_C_O' => 1,
'AC_PROG_EGREP' => 1,
- '_LT_AC_FILE_LTDLL_C' => 1,
- 'AC_LIBTOOL_DLOPEN' => 1,
- 'AC_LIBTOOL_RC' => 1,
- '_LT_AC_TAGCONFIG' => 1,
- '_AM_AUTOCONF_VERSION' => 1,
- 'AC_ENABLE_SHARED' => 1,
- 'LT_WITH_LTDL' => 1,
- 'PKG_CHECK_EXISTS' => 1,
- 'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
- 'AC_LTDL_DLLIB' => 1,
- '_LT_AC_SYS_LIBPATH_AIX' => 1,
+ 'PKG_PROG_PKG_CONFIG' => 1,
'LT_LANG' => 1,
- 'AC_LIBTOOL_DLOPEN_SELF' => 1,
- 'AC_LIBLTDL_CONVENIENCE' => 1,
- 'LT_LIB_DLLOAD' => 1,
- '_LT_AC_CHECK_DLFCN' => 1,
- 'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
- 'AC_LIBLTDL_INSTALLABLE' => 1,
- 'LT_AC_PROG_GCJ' => 1,
- 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
- '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
- 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
- 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
- '_LT_COMPILER_BOILERPLATE' => 1,
- 'LTDL_INIT' => 1,
- 'LTDL_CONVENIENCE' => 1,
- 'LT_FUNC_DLSYM_USCORE' => 1,
- 'AX_PKG_SWIG' => 1,
+ '_AM_CONFIG_MACRO_DIRS' => 1,
+ '_LT_LINKER_OPTION' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
+ 'AC_PATH_MAGIC' => 1,
+ 'AC_LIBTOOL_CONFIG' => 1,
+ '_LT_PROG_CXX' => 1,
'LT_INIT' => 1,
- 'AC_ENABLE_STATIC' => 1,
- 'AM_SET_LEADING_DOT' => 1,
- 'AM_PROG_INSTALL_STRIP' => 1,
- 'AC_LTDL_OBJDIR' => 1,
- 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
- 'AC_PROG_LD_RELOAD_FLAG' => 1,
'_AM_IF_OPTION' => 1,
- 'LTDL_INSTALLABLE' => 1,
- '_LT_LIBOBJ' => 1,
- 'AC_LIBTOOL_WIN32_DLL' => 1,
- 'm4_pattern_forbid' => 1,
+ '_LT_AC_FILE_LTDLL_C' => 1,
+ 'AC_LTDL_SYMBOL_USCORE' => 1,
+ 'AM_PROG_LIBTOOL' => 1,
+ 'AM_CONDITIONAL' => 1,
+ '_LT_AC_LOCK' => 1,
+ 'LT_LIB_M' => 1,
+ '_LT_DLL_DEF_P' => 1,
'AC_LTDL_SHLIBEXT' => 1,
- 'LT_SUPPORTED_TAG' => 1,
- 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
- '_LT_AC_LANG_GCJ_CONFIG' => 1,
- 'AC_LIBTOOL_COMPILER_OPTION' => 1,
- 'AM_AUTOMAKE_VERSION' => 1,
- 'm4_include' => 1,
- 'AC_PATH_TOOL_PREFIX' => 1,
+ '_LT_AC_LANG_RC_CONFIG' => 1,
+ 'AC_LIBTOOL_PICMODE' => 1,
+ 'AC_DEFUN' => 1,
+ 'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
+ '_LT_AC_TRY_DLOPEN_SELF' => 1,
'AC_DEPLIBS_CHECK_METHOD' => 1,
- '_LT_AC_LANG_C_CONFIG' => 1,
- 'LT_PROG_GO' => 1,
- '_LT_PROG_CXX' => 1,
- 'AM_PROG_INSTALL_SH' => 1,
- '_LT_AC_LOCK' => 1,
- 'LT_SYS_SYMBOL_USCORE' => 1,
- 'AM_PROG_LIBTOOL' => 1,
- 'LT_PATH_LD' => 1,
- 'LT_SYS_DLOPEN_DEPLIBS' => 1,
- 'AC_DISABLE_FAST_INSTALL' => 1,
- '_AM_SET_OPTION' => 1,
- 'PKG_PROG_PKG_CONFIG' => 1,
- 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
- 'AC_DISABLE_STATIC' => 1,
- 'LT_SYS_DLSEARCH_PATH' => 1,
- 'LTVERSION_VERSION' => 1,
- 'LT_SYS_MODULE_PATH' => 1,
- '_LT_LINKER_OPTION' => 1,
'LT_FUNC_ARGZ' => 1,
+ 'AC_LTDL_ENABLE_INSTALL' => 1,
+ '_LT_AC_LANG_F77' => 1,
+ '_LT_PROG_ECHO_BACKSLASH' => 1,
+ 'AC_CONFIG_MACRO_DIR_TRACE' => 1,
+ 'AC_DISABLE_SHARED' => 1,
+ 'AM_SET_LEADING_DOT' => 1,
+ 'PKG_CHECK_EXISTS' => 1,
+ 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
+ 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
+ 'AC_LIBLTDL_INSTALLABLE' => 1,
+ 'LT_AC_PROG_EGREP' => 1,
+ 'm4_pattern_allow' => 1,
+ '_LT_PATH_TOOL_PREFIX' => 1,
+ 'AC_DISABLE_STATIC' => 1,
+ 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
'_LT_LINKER_BOILERPLATE' => 1,
+ 'LT_SYS_DLOPEN_DEPLIBS' => 1,
+ 'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
+ 'LT_SUPPORTED_TAG' => 1,
+ 'AC_LTDL_PREOPEN' => 1,
+ 'AC_LIBTOOL_DLOPEN_SELF' => 1,
+ '_LT_AC_TAGVAR' => 1,
+ 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
+ 'LTDL_INIT' => 1,
+ '_AM_SET_OPTIONS' => 1,
+ '_LT_PROG_FC' => 1,
+ 'AC_LTDL_DLSYM_USCORE' => 1,
+ 'LT_CONFIG_LTDL_DIR' => 1,
+ '_LT_AC_SYS_LIBPATH_AIX' => 1,
+ 'LT_PATH_NM' => 1,
+ 'AM_PROG_INSTALL_STRIP' => 1,
+ '_AC_AM_CONFIG_HEADER_HOOK' => 1,
'AM_SET_DEPDIR' => 1,
- 'AC_DISABLE_SHARED' => 1,
- 'AM_SUBST_NOTMAKE' => 1,
- 'AC_DEFUN' => 1,
- '_PKG_SHORT_ERRORS_SUPPORTED' => 1,
- 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
+ 'AC_LIBTOOL_F77' => 1,
+ 'AC_LIBTOOL_LINKER_OPTION' => 1,
+ 'AM_PROG_NM' => 1,
+ 'AC_LIBTOOL_SETUP' => 1,
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
- '_LT_AC_SHELL_INIT' => 1,
- 'AC_LTDL_DLSYM_USCORE' => 1,
- '_AM_PROG_CC_C_O' => 1,
+ 'LTVERSION_VERSION' => 1,
+ 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
+ 'AC_PROG_LD_GNU' => 1,
'AM_PROG_LD' => 1,
- 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
- '_LT_COMPILER_OPTION' => 1,
- '_LT_AC_LANG_RC_CONFIG' => 1,
- '_LT_AC_LANG_F77_CONFIG' => 1,
- 'LT_LIB_M' => 1,
- 'LT_AC_PROG_EGREP' => 1,
- '_LT_PROG_ECHO_BACKSLASH' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
+ 'AC_ENABLE_SHARED' => 1,
+ 'LTDL_CONVENIENCE' => 1,
+ 'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
+ 'AU_DEFUN' => 1,
+ '_AM_DEPENDENCIES' => 1,
+ '_AM_SET_OPTION' => 1,
'AC_LIBTOOL_FC' => 1,
- 'AC_LIBTOOL_OBJDIR' => 1,
- 'AM_SANITY_CHECK' => 1,
- '_LT_AC_LANG_F77' => 1,
- 'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
- 'AM_MAKE_INCLUDE' => 1,
- 'AC_PROG_LIBTOOL' => 1,
- '_LT_DLL_DEF_P' => 1,
+ 'LT_PATH_LD' => 1,
+ 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
+ '_m4_warn' => 1,
+ 'AX_PKG_SWIG' => 1,
'_AC_PROG_LIBTOOL' => 1,
- 'AC_DEFUN_ONCE' => 1,
- 'AC_ENABLE_FAST_INSTALL' => 1,
+ '_LT_COMPILER_OPTION' => 1,
+ '_LT_AC_SHELL_INIT' => 1,
+ 'AM_ENABLE_STATIC' => 1,
+ '_LT_AC_LANG_GCJ' => 1,
+ 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
+ 'AC_LTDL_OBJDIR' => 1,
+ 'AM_AUX_DIR_EXPAND' => 1,
+ 'AC_PROG_LD_RELOAD_FLAG' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
+ 'LTOBSOLETE_VERSION' => 1,
+ 'LT_WITH_LTDL' => 1,
+ 'AM_MAKE_INCLUDE' => 1,
+ 'AM_DEP_TRACK' => 1,
+ 'LT_PROG_GO' => 1,
'AC_WITH_LTDL' => 1,
- 'AC_LIBTOOL_PROG_CC_C_O' => 1,
- '_AM_SUBST_NOTMAKE' => 1,
- 'AC_CONFIG_MACRO_DIR' => 1,
- '_LTDL_SETUP' => 1,
- '_AM_DEPENDENCIES' => 1,
- '_LT_WITH_SYSROOT' => 1,
- '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
- 'AM_PYTHON_CHECK_VERSION' => 1,
- '_m4_warn' => 1,
- 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
- 'LT_PROG_GCJ' => 1,
- '_AM_MANGLE_OPTION' => 1,
- '_LT_PREPARE_SED_QUOTE_VARS' => 1,
+ 'AC_DISABLE_FAST_INSTALL' => 1,
+ '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
+ '_LT_CC_BASENAME' => 1,
+ 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
+ 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
+ 'LTSUGAR_VERSION' => 1,
'_LT_AC_PROG_CXXCPP' => 1,
- '_LT_PROG_FC' => 1,
- '_AM_SET_OPTIONS' => 1,
- 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
- 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
- 'AC_LIBTOOL_CXX' => 1,
+ 'AM_RUN_LOG' => 1,
+ 'LTDL_INSTALLABLE' => 1,
+ 'AC_LIBTOOL_COMPILER_OPTION' => 1,
'_LT_AC_LANG_CXX_CONFIG' => 1,
- '_AC_AM_CONFIG_HEADER_HOOK' => 1
+ 'AM_PYTHON_CHECK_VERSION' => 1,
+ 'AC_LIBLTDL_CONVENIENCE' => 1,
+ 'AM_PROG_CC_C_O' => 1,
+ '_PKG_SHORT_ERRORS_SUPPORTED' => 1,
+ 'LT_AC_PROG_GCJ' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
+ '_AM_MANGLE_OPTION' => 1,
+ 'LT_AC_PROG_SED' => 1,
+ 'AM_SILENT_RULES' => 1,
+ 'AC_LTDL_DLLIB' => 1,
+ 'AC_ENABLE_FAST_INSTALL' => 1,
+ 'LT_AC_PROG_RC' => 1,
+ 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
+ 'm4_pattern_forbid' => 1,
+ '_LTDL_SETUP' => 1,
+ 'AC_LTDL_SHLIBPATH' => 1,
+ 'm4_include' => 1,
+ 'AC_LIBTOOL_PROG_CC_C_O' => 1,
+ 'AC_ENABLE_STATIC' => 1,
+ 'AM_SANITY_CHECK' => 1,
+ '_LT_AC_LANG_GCJ_CONFIG' => 1,
+ 'AC_DEFUN_ONCE' => 1,
+ 'AM_ENABLE_SHARED' => 1,
+ 'LT_FUNC_DLSYM_USCORE' => 1,
+ '_AM_AUTOCONF_VERSION' => 1,
+ 'AM_PROG_INSTALL_SH' => 1,
+ 'LT_PROG_GCJ' => 1,
+ 'LT_SYS_DLOPEN_SELF' => 1,
+ 'include' => 1,
+ 'LT_SYS_DLSEARCH_PATH' => 1,
+ 'AC_PROG_LD' => 1,
+ 'LT_OUTPUT' => 1,
+ 'AC_PROG_NM' => 1,
+ '_LT_AC_LANG_CXX' => 1,
+ 'LT_SYS_MODULE_EXT' => 1
}
], 'Autom4te::Request' ),
bless( [
@@ -247,66 +247,66 @@
'configure.ac'
],
{
- 'AM_MAINTAINER_MODE' => 1,
- 'AC_CONFIG_LINKS' => 1,
- 'AC_PROG_LIBTOOL' => 1,
- 'AC_DEFINE_TRACE_LITERAL' => 1,
- 'm4_sinclude' => 1,
- 'AC_SUBST_TRACE' => 1,
+ 'AC_CONFIG_FILES' => 1,
'AH_OUTPUT' => 1,
- 'AM_NLS' => 1,
- 'AC_CONFIG_SUBDIRS' => 1,
- 'm4_pattern_allow' => 1,
- 'AM_GNU_GETTEXT' => 1,
- 'AM_PROG_LIBTOOL' => 1,
- '_AM_SUBST_NOTMAKE' => 1,
- 'AM_PROG_MKDIR_P' => 1,
- 'AM_INIT_AUTOMAKE' => 1,
- 'AM_PROG_CXX_C_O' => 1,
- 'AC_SUBST' => 1,
'_m4_warn' => 1,
- 'AC_FC_PP_SRCEXT' => 1,
- '_AM_COND_IF' => 1,
- 'AM_PROG_F77_C_O' => 1,
- 'AC_CANONICAL_BUILD' => 1,
'AC_CANONICAL_HOST' => 1,
- 'AM_PROG_MOC' => 1,
- 'AC_CONFIG_FILES' => 1,
- 'LT_CONFIG_LTDL_DIR' => 1,
- 'AC_LIBSOURCE' => 1,
- 'AC_FC_SRCEXT' => 1,
- 'AC_CANONICAL_TARGET' => 1,
- 'sinclude' => 1,
- '_AM_COND_ELSE' => 1,
- 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
- 'LT_INIT' => 1,
- 'AM_XGETTEXT_OPTION' => 1,
- 'include' => 1,
+ 'm4_include' => 1,
+ 'AC_CONFIG_LINKS' => 1,
+ 'AM_MAKEFILE_INCLUDE' => 1,
+ 'm4_pattern_forbid' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
+ 'AM_POT_TOOLS' => 1,
+ 'AC_CANONICAL_SYSTEM' => 1,
+ 'AM_PROG_CXX_C_O' => 1,
'AC_REQUIRE_AUX_FILE' => 1,
'AM_SILENT_RULES' => 1,
- 'AM_PROG_FC_C_O' => 1,
- 'AM_PROG_CC_C_O' => 1,
- 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
- '_AM_COND_ENDIF' => 1,
+ 'AC_SUBST' => 1,
'AM_CONDITIONAL' => 1,
- 'AC_CANONICAL_SYSTEM' => 1,
- 'm4_pattern_forbid' => 1,
+ '_AM_COND_ELSE' => 1,
+ 'AC_CANONICAL_TARGET' => 1,
+ 'AC_INIT' => 1,
+ 'AC_FC_PP_DEFINE' => 1,
+ 'sinclude' => 1,
+ 'AM_PROG_LIBTOOL' => 1,
+ 'LT_CONFIG_LTDL_DIR' => 1,
+ 'LT_INIT' => 1,
+ 'AC_CONFIG_SUBDIRS' => 1,
'AC_CONFIG_HEADERS' => 1,
+ 'AM_PROG_F77_C_O' => 1,
'AM_ENABLE_MULTILIB' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
+ 'AC_FC_SRCEXT' => 1,
+ 'AM_PROG_AR' => 1,
+ 'AM_PROG_CC_C_O' => 1,
'LT_SUPPORTED_TAG' => 1,
+ 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
+ 'AM_PROG_MKDIR_P' => 1,
+ 'AC_LIBSOURCE' => 1,
+ 'AM_GNU_GETTEXT' => 1,
+ 'AM_MAINTAINER_MODE' => 1,
+ 'm4_pattern_allow' => 1,
'AC_FC_FREEFORM' => 1,
- 'AC_FC_PP_DEFINE' => 1,
- '_LT_AC_TAGCONFIG' => 1,
- 'AM_PROG_AR' => 1,
- 'AM_AUTOMAKE_VERSION' => 1,
- 'AC_CONFIG_AUX_DIR' => 1,
- 'm4_include' => 1,
- 'AC_INIT' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ '_AM_COND_ENDIF' => 1,
+ 'AC_SUBST_TRACE' => 1,
+ 'm4_sinclude' => 1,
+ 'AM_PROG_MOC' => 1,
+ 'AM_PATH_GUILE' => 1,
'_AM_MAKEFILE_INCLUDE' => 1,
+ 'include' => 1,
+ 'AC_CANONICAL_BUILD' => 1,
+ 'AC_CONFIG_AUX_DIR' => 1,
+ 'AC_DEFINE_TRACE_LITERAL' => 1,
+ 'AM_XGETTEXT_OPTION' => 1,
+ '_AM_SUBST_NOTMAKE' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
+ 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
+ 'AM_PROG_FC_C_O' => 1,
'AC_CONFIG_LIBOBJ_DIR' => 1,
- 'AM_POT_TOOLS' => 1,
- 'AM_MAKEFILE_INCLUDE' => 1,
- 'AM_PATH_GUILE' => 1
+ 'AC_FC_PP_SRCEXT' => 1,
+ '_AM_COND_IF' => 1,
+ 'AM_NLS' => 1
}
], 'Autom4te::Request' )
);
diff --git a/pocketsphinx-5prealpha/autom4te.cache/traces.0 b/pocketsphinx-5prealpha/autom4te.cache/traces.0
index 10a6353..7865809 100644
--- a/pocketsphinx-5prealpha/autom4te.cache/traces.0
+++ b/pocketsphinx-5prealpha/autom4te.cache/traces.0
@@ -696,21 +696,21 @@ m4trace:/usr/share/aclocal/ltdl.m4:907: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4
m4trace:/usr/share/aclocal/ltdl.m4:907: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
-m4trace:/usr/share/aclocal-1.15/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
+m4trace:/usr/share/aclocal-1.16/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.16'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro.
-m4_if([$1], [1.15], [],
+m4_if([$1], [1.16.1], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
-m4trace:/usr/share/aclocal-1.15/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
+m4trace:/usr/share/aclocal-1.16/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.16.1])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
-m4trace:/usr/share/aclocal-1.15/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
+m4trace:/usr/share/aclocal-1.16/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
# Expand $ac_aux_dir to an absolute path.
am_aux_dir=`cd "$ac_aux_dir" && pwd`
])
-m4trace:/usr/share/aclocal-1.15/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
+m4trace:/usr/share/aclocal-1.16/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
AC_SUBST([$1_TRUE])dnl
@@ -730,7 +730,7 @@ AC_CONFIG_COMMANDS_PRE(
AC_MSG_ERROR([[conditional "$1" was never defined.
Usually this means the macro was only invoked conditionally.]])
fi])])
-m4trace:/usr/share/aclocal-1.15/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
+m4trace:/usr/share/aclocal-1.16/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
AC_REQUIRE([AM_DEP_TRACK])dnl
@@ -860,10 +860,10 @@ AM_CONDITIONAL([am__fastdep$1], [
test "x$enable_dependency_tracking" != xno \
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3])
])
-m4trace:/usr/share/aclocal-1.15/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
+m4trace:/usr/share/aclocal-1.16/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
])
-m4trace:/usr/share/aclocal-1.15/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
+m4trace:/usr/share/aclocal-1.16/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
AS_HELP_STRING(
[--enable-dependency-tracking],
[do not reject slow dependency extractors])
@@ -881,60 +881,51 @@ _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
AC_SUBST([am__nodep])dnl
_AM_SUBST_NOTMAKE([am__nodep])dnl
])
-m4trace:/usr/share/aclocal-1.15/depout.m4:12: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
+m4trace:/usr/share/aclocal-1.16/depout.m4:11: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ AS_CASE([$CONFIG_FILES],
+ [*\'*], [eval set x "$CONFIG_FILES"],
+ [*], [set x $CONFIG_FILES])
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`AS_DIRNAME("$mf")`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`AS_DIRNAME(["$file"])`
- AS_MKDIR_P([$dirpart/$fdir])
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`AS_DIRNAME(["$am_mf"])`
+ am_filepart=`AS_BASENAME(["$am_mf"])`
+ AM_RUN_LOG([cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles]) || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).])
+ fi
+ AS_UNSET([am_dirpart])
+ AS_UNSET([am_filepart])
+ AS_UNSET([am_mf])
+ AS_UNSET([am_rc])
+ rm -f conftest-deps.mk
}
])
-m4trace:/usr/share/aclocal-1.15/depout.m4:71: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
+m4trace:/usr/share/aclocal-1.16/depout.m4:62: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
-])
-m4trace:/usr/share/aclocal-1.15/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
+ [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
+m4trace:/usr/share/aclocal-1.16/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
dnl Autoconf wants to disallow AM_ names. We explicitly allow
dnl the ones we care about.
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
@@ -994,8 +985,8 @@ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
# We need awk for the "check" target (and possibly the TAP driver). The
# system "awk" is bad on some platforms.
@@ -1062,7 +1053,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -1076,7 +1067,7 @@ dnl The trailing newline in this macro's definition is deliberate, for
dnl backward compatibility and to allow trailing 'dnl'-style comments
dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
])
-m4trace:/usr/share/aclocal-1.15/init.m4:186: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
+m4trace:/usr/share/aclocal-1.16/init.m4:186: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
_am_arg=$1
_am_stamp_count=1
for _am_header in $config_headers :; do
@@ -1088,7 +1079,7 @@ for _am_header in $config_headers :; do
esac
done
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
-m4trace:/usr/share/aclocal-1.15/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+m4trace:/usr/share/aclocal-1.16/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
if test x"${install_sh+set}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
@@ -1098,7 +1089,7 @@ if test x"${install_sh+set}" != xset; then
esac
fi
AC_SUBST([install_sh])])
-m4trace:/usr/share/aclocal-1.15/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
+m4trace:/usr/share/aclocal-1.16/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
mkdir .tst 2>/dev/null
if test -d .tst; then
am__leading_dot=.
@@ -1107,47 +1098,39 @@ else
fi
rmdir .tst 2>/dev/null
AC_SUBST([am__leading_dot])])
-m4trace:/usr/share/aclocal-1.15/make.m4:12: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
-cat > confinc << 'END'
+m4trace:/usr/share/aclocal-1.16/make.m4:13: -1- AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-AC_MSG_CHECKING([for style of include used by $am_make])
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
- ;;
- esac
-fi
-AC_SUBST([am__include])
-AC_SUBST([am__quote])
-AC_MSG_RESULT([$_am_result])
-rm -f confinc confmf
-])
-m4trace:/usr/share/aclocal-1.15/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
+ AS_CASE([$?:`cat confinc.out 2>/dev/null`],
+ ['0:this is the am__doit target'],
+ [AS_CASE([$s],
+ [BSD], [am__include='.include' am__quote='"'],
+ [am__include='include' am__quote=''])])
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+AC_MSG_RESULT([${_am_result}])
+AC_SUBST([am__include])])
+m4trace:/usr/share/aclocal-1.16/make.m4:42: -1- m4_pattern_allow([^am__quote$])
+m4trace:/usr/share/aclocal-1.16/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
$1=${$1-"${am_missing_run}$2"}
AC_SUBST($1)])
-m4trace:/usr/share/aclocal-1.15/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+m4trace:/usr/share/aclocal-1.16/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
AC_REQUIRE_AUX_FILE([missing])dnl
if test x"${MISSING+set}" != xset; then
case $am_aux_dir in
@@ -1165,11 +1148,11 @@ else
AC_MSG_WARN(['missing' script is too old or missing])
fi
])
-m4trace:/usr/share/aclocal-1.15/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
-m4trace:/usr/share/aclocal-1.15/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
-m4trace:/usr/share/aclocal-1.15/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
-m4trace:/usr/share/aclocal-1.15/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
-m4trace:/usr/share/aclocal-1.15/prog-cc-c-o.m4:12: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+m4trace:/usr/share/aclocal-1.16/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
+m4trace:/usr/share/aclocal-1.16/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
+m4trace:/usr/share/aclocal-1.16/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
+m4trace:/usr/share/aclocal-1.16/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
+m4trace:/usr/share/aclocal-1.16/prog-cc-c-o.m4:12: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
AC_REQUIRE_AUX_FILE([compile])dnl
AC_LANG_PUSH([C])dnl
AC_CACHE_CHECK(
@@ -1201,13 +1184,16 @@ if test "$am_cv_prog_cc_c_o" != yes; then
CC="$am_aux_dir/compile $CC"
fi
AC_LANG_POP([C])])
-m4trace:/usr/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
-m4trace:/usr/share/aclocal-1.15/python.m4:35: -1- AC_DEFUN([AM_PATH_PYTHON], [
+m4trace:/usr/share/aclocal-1.16/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
+m4trace:/usr/share/aclocal-1.16/python.m4:35: -1- AC_DEFUN([AM_PATH_PYTHON], [
dnl Find a Python interpreter. Python versions prior to 2.0 are not
dnl supported. (2.0 was released on October 16, 2000).
m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
-[python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl
- python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0])
+[python python2 python3 dnl
+ python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 dnl
+ python3.2 python3.1 python3.0 dnl
+ python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 dnl
+ python2.0])
AC_ARG_VAR([PYTHON], [the Python interpreter])
@@ -1386,7 +1372,7 @@ sys.stdout.write(sitedir)"`
fi
])
-m4trace:/usr/share/aclocal-1.15/python.m4:229: -1- AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys
+m4trace:/usr/share/aclocal-1.16/python.m4:232: -1- AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
# because we need at least 4 digits for the hex conversion.
# map returns an iterator in Python 3.0 and a list in 2.x
@@ -1396,12 +1382,12 @@ minverhex = 0
for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
sys.exit(sys.hexversion < minverhex)"
AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
-m4trace:/usr/share/aclocal-1.15/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
+m4trace:/usr/share/aclocal-1.16/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
ac_status=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
(exit $ac_status); }])
-m4trace:/usr/share/aclocal-1.15/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
+m4trace:/usr/share/aclocal-1.16/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
# Reject unsafe characters in $srcdir or the absolute working directory
# name. Accept space and tab only in the latter.
am_lf='
@@ -1472,7 +1458,7 @@ AC_CONFIG_COMMANDS_PRE(
AC_MSG_RESULT([done])])
rm -f conftest.file
])
-m4trace:/usr/share/aclocal-1.15/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
+m4trace:/usr/share/aclocal-1.16/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
AS_HELP_STRING(
[--enable-silent-rules],
[less verbose build output (undo: "make V=1")])
@@ -1520,7 +1506,7 @@ AM_BACKSLASH='\'
AC_SUBST([AM_BACKSLASH])dnl
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
])
-m4trace:/usr/share/aclocal-1.15/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
+m4trace:/usr/share/aclocal-1.16/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
# Installed binaries are usually stripped using 'strip' when the user
# run "make install-strip". However 'strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
@@ -1531,9 +1517,9 @@ if test "$cross_compiling" != no; then
fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
AC_SUBST([INSTALL_STRIP_PROGRAM])])
-m4trace:/usr/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
-m4trace:/usr/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
-m4trace:/usr/share/aclocal-1.15/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
+m4trace:/usr/share/aclocal-1.16/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
+m4trace:/usr/share/aclocal-1.16/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
+m4trace:/usr/share/aclocal-1.16/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
# in the wild :-( We should find a proper way to deprecate it ...
AC_SUBST([AMTAR], ['$${TAR-tar}'])
@@ -2094,8 +2080,8 @@ $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
exec AS_MESSAGE_LOG_FD>>config.log
$lt_cl_success || AS_EXIT(1)
])
-m4trace:m4/libtool.m4:812: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
-m4trace:m4/libtool.m4:823: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
+m4trace:m4/libtool.m4:811: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
+m4trace:m4/libtool.m4:822: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
m4_case([$1],
[C], [_LT_LANG(C)],
[C++], [_LT_LANG(CXX)],
@@ -2108,27 +2094,27 @@ m4_case([$1],
[_LT_LANG($1)],
[m4_fatal([$0: unsupported language: "$1"])])])dnl
])
-m4trace:m4/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
-m4trace:m4/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
+m4trace:m4/libtool.m4:914: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
+m4trace:m4/libtool.m4:914: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
You should run autoupdate.])dnl
LT_LANG(C++)])
-m4trace:m4/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
-m4trace:m4/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
+m4trace:m4/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
+m4trace:m4/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
You should run autoupdate.])dnl
LT_LANG(Fortran 77)])
-m4trace:m4/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
-m4trace:m4/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
+m4trace:m4/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
+m4trace:m4/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
You should run autoupdate.])dnl
LT_LANG(Fortran)])
-m4trace:m4/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
-m4trace:m4/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
+m4trace:m4/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
+m4trace:m4/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
You should run autoupdate.])dnl
LT_LANG(Java)])
-m4trace:m4/libtool.m4:919: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
-m4trace:m4/libtool.m4:919: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
+m4trace:m4/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
+m4trace:m4/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
You should run autoupdate.])dnl
LT_LANG(Windows Resource)])
-m4trace:m4/libtool.m4:1247: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
+m4trace:m4/libtool.m4:1246: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
AC_ARG_WITH([sysroot],
[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
[Search for dependent libraries within DIR (or the compiler's sysroot
@@ -2158,7 +2144,7 @@ esac
AC_MSG_RESULT([${lt_sysroot:-no}])
_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
[dependent libraries, and where our libraries should be installed.])])
-m4trace:m4/libtool.m4:1578: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4trace:m4/libtool.m4:1577: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
m4_require([_LT_DECL_SED])dnl
AC_CACHE_CHECK([$1], [$2],
[$2=no
@@ -2197,11 +2183,11 @@ else
m4_if([$6], , :, [$6])
fi
])
-m4trace:m4/libtool.m4:1620: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
-m4trace:m4/libtool.m4:1620: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
+m4trace:m4/libtool.m4:1619: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
+m4trace:m4/libtool.m4:1619: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
-m4trace:m4/libtool.m4:1629: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4trace:m4/libtool.m4:1628: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
m4_require([_LT_DECL_SED])dnl
AC_CACHE_CHECK([$1], [$2],
[$2=no
@@ -2233,11 +2219,11 @@ else
m4_if([$5], , :, [$5])
fi
])
-m4trace:m4/libtool.m4:1664: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
-m4trace:m4/libtool.m4:1664: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
+m4trace:m4/libtool.m4:1663: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
+m4trace:m4/libtool.m4:1663: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
-m4trace:m4/libtool.m4:1671: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
+m4trace:m4/libtool.m4:1670: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
# find the maximum length of command line arguments
AC_MSG_CHECKING([the maximum length of command line arguments])
AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
@@ -2373,11 +2359,11 @@ max_cmd_len=$lt_cv_sys_max_cmd_len
_LT_DECL([], [max_cmd_len], [0],
[What is the maximum length of a command?])
])
-m4trace:m4/libtool.m4:1810: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
-m4trace:m4/libtool.m4:1810: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
+m4trace:m4/libtool.m4:1809: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
+m4trace:m4/libtool.m4:1809: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
-m4trace:m4/libtool.m4:1921: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
+m4trace:m4/libtool.m4:1920: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
if test yes != "$enable_dlopen"; then
enable_dlopen=unknown
enable_dlopen_self=unknown
@@ -2499,11 +2485,11 @@ _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
[Whether dlopen of statically linked programs is supported])
])
-m4trace:m4/libtool.m4:2046: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
-m4trace:m4/libtool.m4:2046: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
+m4trace:m4/libtool.m4:2045: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
+m4trace:m4/libtool.m4:2045: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
-m4trace:m4/libtool.m4:3167: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
+m4trace:m4/libtool.m4:3166: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
AC_MSG_CHECKING([for $1])
AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
[case $MAGIC_CMD in
@@ -2562,11 +2548,11 @@ fi
_LT_DECL([], [MAGIC_CMD], [0],
[Used to examine libraries when file_magic_cmd begins with "file"])dnl
])
-m4trace:m4/libtool.m4:3229: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
-m4trace:m4/libtool.m4:3229: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
+m4trace:m4/libtool.m4:3228: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
+m4trace:m4/libtool.m4:3228: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
-m4trace:m4/libtool.m4:3252: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
+m4trace:m4/libtool.m4:3251: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
AC_REQUIRE([AC_CANONICAL_HOST])dnl
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
m4_require([_LT_DECL_SED])dnl
@@ -2652,15 +2638,15 @@ AC_SUBST([LD])
_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
])
-m4trace:m4/libtool.m4:3341: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
-m4trace:m4/libtool.m4:3341: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
+m4trace:m4/libtool.m4:3340: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
+m4trace:m4/libtool.m4:3340: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
-m4trace:m4/libtool.m4:3342: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
-m4trace:m4/libtool.m4:3342: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
+m4trace:m4/libtool.m4:3341: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
+m4trace:m4/libtool.m4:3341: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
-m4trace:m4/libtool.m4:3671: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
+m4trace:m4/libtool.m4:3670: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
[if test -n "$NM"; then
# Let the user override the test.
@@ -2752,15 +2738,15 @@ AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
fi
rm -f conftest*])
])
-m4trace:m4/libtool.m4:3766: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
-m4trace:m4/libtool.m4:3766: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
+m4trace:m4/libtool.m4:3765: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
+m4trace:m4/libtool.m4:3765: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
-m4trace:m4/libtool.m4:3767: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
-m4trace:m4/libtool.m4:3767: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
+m4trace:m4/libtool.m4:3766: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
+m4trace:m4/libtool.m4:3766: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
-m4trace:m4/libtool.m4:3838: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
+m4trace:m4/libtool.m4:3837: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
test DEF = "`$SED -n dnl
-e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
-e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
@@ -2768,7 +2754,7 @@ m4trace:m4/libtool.m4:3838: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
-e q dnl Only consider the first "real" line
$1`" dnl
])
-m4trace:m4/libtool.m4:3852: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
+m4trace:m4/libtool.m4:3851: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
LIBM=
case $host in
*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
@@ -2784,8 +2770,8 @@ case $host in
esac
AC_SUBST([LIBM])
])
-m4trace:m4/libtool.m4:3871: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
-m4trace:m4/libtool.m4:3871: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
+m4trace:m4/libtool.m4:3870: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
+m4trace:m4/libtool.m4:3870: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
m4trace:m4/libtool.m4:8141: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
@@ -3094,7 +3080,7 @@ m4trace:configure.ac:4: -1- m4_pattern_allow([^target_alias$])
m4trace:configure.ac:6: -1- AM_INIT_AUTOMAKE([no-define foreign])
m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
m4trace:configure.ac:6: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
-m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.15])
+m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.16.1])
m4trace:configure.ac:6: -1- _AM_AUTOCONF_VERSION([2.69])
m4trace:configure.ac:6: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
m4trace:configure.ac:6: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
@@ -3201,8 +3187,8 @@ m4trace:configure.ac:12: -1- AM_SET_DEPDIR
m4trace:configure.ac:12: -1- m4_pattern_allow([^DEPDIR$])
m4trace:configure.ac:12: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
m4trace:configure.ac:12: -1- AM_MAKE_INCLUDE
+m4trace:configure.ac:12: -1- AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
m4trace:configure.ac:12: -1- m4_pattern_allow([^am__include$])
-m4trace:configure.ac:12: -1- m4_pattern_allow([^am__quote$])
m4trace:configure.ac:12: -1- AM_DEP_TRACK
m4trace:configure.ac:12: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
m4trace:configure.ac:12: -1- m4_pattern_allow([^AMDEP_TRUE$])
@@ -3385,4 +3371,7 @@ m4trace:configure.ac:147: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
m4trace:configure.ac:147: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
m4trace:configure.ac:147: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
m4trace:configure.ac:147: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
+m4trace:configure.ac:147: -1- AM_RUN_LOG([cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles])
m4trace:configure.ac:147: -1- _LT_PROG_LTMAIN
diff --git a/pocketsphinx-5prealpha/autom4te.cache/traces.1 b/pocketsphinx-5prealpha/autom4te.cache/traces.1
index 7e81992..fc57687 100644
--- a/pocketsphinx-5prealpha/autom4te.cache/traces.1
+++ b/pocketsphinx-5prealpha/autom4te.cache/traces.1
@@ -1,11 +1,14 @@
-m4trace:aclocal.m4:1388: -1- m4_include([m4/ax_pkg_swig.m4])
-m4trace:aclocal.m4:1389: -1- m4_include([m4/ax_python_devel.m4])
-m4trace:aclocal.m4:1390: -1- m4_include([m4/libtool.m4])
-m4trace:aclocal.m4:1391: -1- m4_include([m4/ltoptions.m4])
-m4trace:aclocal.m4:1392: -1- m4_include([m4/ltsugar.m4])
-m4trace:aclocal.m4:1393: -1- m4_include([m4/ltversion.m4])
-m4trace:aclocal.m4:1394: -1- m4_include([m4/lt~obsolete.m4])
-m4trace:aclocal.m4:1395: -1- m4_include([m4/pkg.m4])
+m4trace:aclocal.m4:679: -1- AC_SUBST([am__quote])
+m4trace:aclocal.m4:679: -1- AC_SUBST_TRACE([am__quote])
+m4trace:aclocal.m4:679: -1- m4_pattern_allow([^am__quote$])
+m4trace:aclocal.m4:1374: -1- m4_include([m4/ax_pkg_swig.m4])
+m4trace:aclocal.m4:1375: -1- m4_include([m4/ax_python_devel.m4])
+m4trace:aclocal.m4:1376: -1- m4_include([m4/libtool.m4])
+m4trace:aclocal.m4:1377: -1- m4_include([m4/ltoptions.m4])
+m4trace:aclocal.m4:1378: -1- m4_include([m4/ltsugar.m4])
+m4trace:aclocal.m4:1379: -1- m4_include([m4/ltversion.m4])
+m4trace:aclocal.m4:1380: -1- m4_include([m4/lt~obsolete.m4])
+m4trace:aclocal.m4:1381: -1- m4_include([m4/pkg.m4])
m4trace:configure.ac:4: -1- AC_INIT([pocketsphinx], [5prealpha])
m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?A[CHUM]_])
m4trace:configure.ac:4: -1- m4_pattern_forbid([_AC_])
@@ -160,7 +163,7 @@ m4trace:configure.ac:4: -1- m4_pattern_allow([^target_alias$])
m4trace:configure.ac:5: -1- AC_CONFIG_HEADERS([include/config.h])
m4trace:configure.ac:6: -1- AM_INIT_AUTOMAKE([no-define foreign])
m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
-m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.15])
+m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.16.1])
m4trace:configure.ac:6: -1- AC_REQUIRE_AUX_FILE([install-sh])
m4trace:configure.ac:6: -1- AC_SUBST([INSTALL_PROGRAM])
m4trace:configure.ac:6: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
@@ -321,9 +324,6 @@ m4trace:configure.ac:12: -1- m4_pattern_allow([^DEPDIR$])
m4trace:configure.ac:12: -1- AC_SUBST([am__include])
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([am__include])
m4trace:configure.ac:12: -1- m4_pattern_allow([^am__include$])
-m4trace:configure.ac:12: -1- AC_SUBST([am__quote])
-m4trace:configure.ac:12: -1- AC_SUBST_TRACE([am__quote])
-m4trace:configure.ac:12: -1- m4_pattern_allow([^am__quote$])
m4trace:configure.ac:12: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
m4trace:configure.ac:12: -1- AC_SUBST([AMDEP_TRUE])
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([AMDEP_TRUE])
diff --git a/pocketsphinx-5prealpha/compile b/pocketsphinx-5prealpha/compile
index a85b723..99e5052 100755
--- a/pocketsphinx-5prealpha/compile
+++ b/pocketsphinx-5prealpha/compile
@@ -1,9 +1,9 @@
#! /bin/sh
# Wrapper for compilers which do not understand '-c -o'.
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2018-03-07.03; # UTC
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
# Written by Tom Tromey .
#
# This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@ scriptversion=2012-10-14.11; # UTC
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
+# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
@@ -255,7 +255,8 @@ EOF
echo "compile $scriptversion"
exit $?
;;
- cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+ cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
func_cl_wrapper "$@" # Doesn't return...
;;
esac
@@ -339,9 +340,9 @@ exit $ret
# Local Variables:
# mode: shell-script
# sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
diff --git a/pocketsphinx-5prealpha/config.log b/pocketsphinx-5prealpha/config.log
index 935fa5d..a6d93df 100644
--- a/pocketsphinx-5prealpha/config.log
+++ b/pocketsphinx-5prealpha/config.log
@@ -12,9 +12,9 @@ generated by GNU Autoconf 2.69. Invocation command line was
hostname = pi
uname -m = armv7l
-uname -r = 4.4.38-v7+
+uname -r = 4.19.66-v7+
uname -s = Linux
-uname -v = #938 SMP Thu Dec 15 15:22:21 GMT 2016
+uname -v = #1253 SMP Thu Aug 15 11:49:46 BST 2019
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
@@ -27,119 +27,123 @@ uname -v = #938 SMP Thu Dec 15 15:22:21 GMT 2016
/usr/bin/oslevel = unknown
/bin/universe = unknown
-PATH: /home/pi/bin
-PATH: /home/pi/.local/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
-PATH: /usr/games
PATH: /usr/local/games
-PATH: /snap/bin
+PATH: /usr/games
## ----------- ##
## Core tests. ##
## ----------- ##
-configure:2565: checking for a BSD-compatible install
-configure:2633: result: /usr/bin/install -c
-configure:2644: checking whether build environment is sane
-configure:2699: result: yes
-configure:2850: checking for a thread-safe mkdir -p
-configure:2889: result: /bin/mkdir -p
-configure:2896: checking for gawk
-configure:2912: found /usr/bin/gawk
-configure:2923: result: gawk
-configure:2934: checking whether make sets $(MAKE)
-configure:2956: result: yes
-configure:2985: checking whether make supports nested variables
-configure:3002: result: yes
-configure:3127: checking build system type
-configure:3141: result: armv7l-unknown-linux-gnueabihf
-configure:3161: checking host system type
-configure:3174: result: armv7l-unknown-linux-gnueabihf
-configure:3242: checking for gcc
-configure:3258: found /usr/bin/gcc
-configure:3269: result: gcc
-configure:3498: checking for C compiler version
-configure:3507: gcc --version >&5
-gcc (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10) 5.4.0 20160609
-Copyright (C) 2015 Free Software Foundation, Inc.
+configure:2561: checking for a BSD-compatible install
+configure:2629: result: /usr/bin/install -c
+configure:2640: checking whether build environment is sane
+configure:2695: result: yes
+configure:2844: checking for a thread-safe mkdir -p
+configure:2883: result: /bin/mkdir -p
+configure:2890: checking for gawk
+configure:2920: result: no
+configure:2890: checking for mawk
+configure:2906: found /usr/bin/mawk
+configure:2917: result: mawk
+configure:2928: checking whether make sets $(MAKE)
+configure:2950: result: yes
+configure:2979: checking whether make supports nested variables
+configure:2996: result: yes
+configure:3121: checking build system type
+configure:3135: result: armv7l-unknown-linux-gnueabihf
+configure:3155: checking host system type
+configure:3168: result: armv7l-unknown-linux-gnueabihf
+configure:3236: checking for gcc
+configure:3252: found /usr/bin/gcc
+configure:3263: result: gcc
+configure:3492: checking for C compiler version
+configure:3501: gcc --version >&5
+gcc (Raspbian 8.3.0-6+rpi1) 8.3.0
+Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-configure:3518: $? = 0
-configure:3507: gcc -v >&5
+configure:3512: $? = 0
+configure:3501: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/5/lto-wrapper
+COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/8/lto-wrapper
Target: arm-linux-gnueabihf
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm --disable-libquadmath --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-armhf/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-armhf --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-armhf --with-arch-directory=arm --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --enable-multilib --disable-sjlj-exceptions --with-arch=armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb --disable-werror --enable-multilib --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
+Configured with: ../src/configure -v --with-pkgversion='Raspbian 8.3.0-6+rpi1' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=arm-linux-gnueabihf- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm --disable-libquadmath --disable-libquadmath-support --enable-plugin --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-sjlj-exceptions --with-arch=armv6 --with-fpu=vfp --with-float=hard --disable-werror --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
Thread model: posix
-gcc version 5.4.0 20160609 (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10)
-configure:3518: $? = 0
-configure:3507: gcc -V >&5
+gcc version 8.3.0 (Raspbian 8.3.0-6+rpi1)
+configure:3512: $? = 0
+configure:3501: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
-configure:3518: $? = 1
-configure:3507: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'
+configure:3512: $? = 1
+configure:3501: gcc -qversion >&5
+gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
-configure:3518: $? = 1
-configure:3538: checking whether the C compiler works
-configure:3560: gcc -g -O2 -Wall conftest.c >&5
-configure:3564: $? = 0
-configure:3612: result: yes
-configure:3615: checking for C compiler default output file name
-configure:3617: result: a.out
-configure:3623: checking for suffix of executables
-configure:3630: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:3634: $? = 0
-configure:3656: result:
-configure:3678: checking whether we are cross compiling
-configure:3686: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:3690: $? = 0
-configure:3697: ./conftest
-configure:3701: $? = 0
-configure:3716: result: no
-configure:3721: checking for suffix of object files
-configure:3743: gcc -c -g -O2 -Wall conftest.c >&5
-configure:3747: $? = 0
-configure:3768: result: o
-configure:3772: checking whether we are using the GNU C compiler
-configure:3791: gcc -c -g -O2 -Wall conftest.c >&5
-configure:3791: $? = 0
-configure:3800: result: yes
-configure:3809: checking whether gcc accepts -g
-configure:3829: gcc -c -g conftest.c >&5
-configure:3829: $? = 0
-configure:3870: result: yes
-configure:3887: checking for gcc option to accept ISO C89
-configure:3950: gcc -c -g -O2 -Wall conftest.c >&5
-configure:3950: $? = 0
-configure:3963: result: none needed
-configure:3988: checking whether gcc understands -c and -o together
-configure:4010: gcc -c conftest.c -o conftest2.o
-configure:4013: $? = 0
-configure:4010: gcc -c conftest.c -o conftest2.o
-configure:4013: $? = 0
-configure:4025: result: yes
-configure:4053: checking for style of include used by make
-configure:4081: result: GNU
-configure:4107: checking dependency style of gcc
-configure:4218: result: gcc3
-configure:4239: checking how to run the C preprocessor
-configure:4270: gcc -E conftest.c
-configure:4270: $? = 0
-configure:4284: gcc -E conftest.c
-conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
+configure:3512: $? = 1
+configure:3532: checking whether the C compiler works
+configure:3554: gcc -g -O2 -Wall conftest.c >&5
+configure:3558: $? = 0
+configure:3606: result: yes
+configure:3609: checking for C compiler default output file name
+configure:3611: result: a.out
+configure:3617: checking for suffix of executables
+configure:3624: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:3628: $? = 0
+configure:3650: result:
+configure:3672: checking whether we are cross compiling
+configure:3680: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:3684: $? = 0
+configure:3691: ./conftest
+configure:3695: $? = 0
+configure:3683: result: no
+configure:3688: checking for suffix of object files
+configure:3710: gcc -c -g -O2 -Wall conftest.c >&5
+configure:3714: $? = 0
+configure:3735: result: o
+configure:3739: checking whether we are using the GNU C compiler
+configure:3758: gcc -c -g -O2 -Wall conftest.c >&5
+configure:3758: $? = 0
+configure:3767: result: yes
+configure:3776: checking whether gcc accepts -g
+configure:3796: gcc -c -g conftest.c >&5
+configure:3796: $? = 0
+configure:3837: result: yes
+configure:3854: checking for gcc option to accept ISO C89
+configure:3917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:3917: $? = 0
+configure:3930: result: none needed
+configure:3955: checking whether gcc understands -c and -o together
+configure:3977: gcc -c conftest.c -o conftest2.o
+configure:3980: $? = 0
+configure:3977: gcc -c conftest.c -o conftest2.o
+configure:3980: $? = 0
+configure:3992: result: yes
+configure:4012: checking whether make supports the include directive
+configure:4027: make -f confmf.GNU && cat confinc.out
+this is the am__doit target
+configure:4030: $? = 0
+configure:4049: result: yes (GNU style)
+configure:4074: checking dependency style of gcc
+configure:4185: result: gcc3
+configure:4206: checking how to run the C preprocessor
+configure:4237: gcc -E conftest.c
+configure:4237: $? = 0
+configure:4251: gcc -E conftest.c
+conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
+ #include
+ ^~~~~~~~~~~~~~~~~~
compilation terminated.
-configure:4284: $? = 1
+configure:4251: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "pocketsphinx"
@@ -150,13 +154,15 @@ configure: failed program was:
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include
-configure:4309: result: gcc -E
-configure:4329: gcc -E conftest.c
-configure:4329: $? = 0
-configure:4343: gcc -E conftest.c
-conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
+configure:4276: result: gcc -E
+configure:4296: gcc -E conftest.c
+configure:4296: $? = 0
+configure:4310: gcc -E conftest.c
+conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
+ #include
+ ^~~~~~~~~~~~~~~~~~
compilation terminated.
-configure:4343: $? = 1
+configure:4310: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "pocketsphinx"
@@ -167,63 +173,63 @@ configure: failed program was:
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include
-configure:4372: checking for grep that handles long lines and -e
-configure:4430: result: /bin/grep
-configure:4435: checking for egrep
-configure:4497: result: /bin/grep -E
-configure:4502: checking for ANSI C header files
-configure:4522: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4522: $? = 0
-configure:4595: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:4595: $? = 0
-configure:4595: ./conftest
-configure:4595: $? = 0
-configure:4606: result: yes
-configure:4619: checking for sys/types.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4619: checking for sys/stat.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4619: checking for stdlib.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4619: checking for string.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4619: checking for memory.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4619: checking for strings.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4619: checking for inttypes.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4619: checking for stdint.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4619: checking for unistd.h
-configure:4619: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4619: $? = 0
-configure:4619: result: yes
-configure:4631: checking for long long
-configure:4631: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4631: $? = 0
-configure:4631: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4339: checking for grep that handles long lines and -e
+configure:4397: result: /bin/grep
+configure:4402: checking for egrep
+configure:4464: result: /bin/grep -E
+configure:4469: checking for ANSI C header files
+configure:4489: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4489: $? = 0
+configure:4562: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:4562: $? = 0
+configure:4562: ./conftest
+configure:4562: $? = 0
+configure:4573: result: yes
+configure:4586: checking for sys/types.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4586: checking for sys/stat.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4586: checking for stdlib.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4586: checking for string.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4586: checking for memory.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4586: checking for strings.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4586: checking for inttypes.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4586: checking for stdint.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4586: checking for unistd.h
+configure:4586: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4586: $? = 0
+configure:4586: result: yes
+configure:4598: checking for long long
+configure:4598: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4598: $? = 0
+configure:4598: gcc -c -g -O2 -Wall conftest.c >&5
conftest.c: In function 'main':
conftest.c:55:24: error: expected expression before ')' token
if (sizeof ((long long)))
^
-configure:4631: $? = 1
+configure:4598: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "pocketsphinx"
@@ -284,233 +290,214 @@ configure: failed program was:
| ;
| return 0;
| }
-configure:4631: result: yes
-configure:4645: checking size of long long
-configure:4650: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:4650: $? = 0
-configure:4650: ./conftest
-configure:4650: $? = 0
-configure:4664: result: 8
-configure:4721: checking how to print strings
-configure:4748: result: printf
-configure:4769: checking for a sed that does not truncate output
-configure:4833: result: /bin/sed
-configure:4851: checking for fgrep
-configure:4913: result: /bin/grep -F
-configure:4948: checking for ld used by gcc
-configure:5015: result: /usr/bin/ld
-configure:5022: checking if the linker (/usr/bin/ld) is GNU ld
-configure:5037: result: yes
-configure:5049: checking for BSD- or MS-compatible name lister (nm)
-configure:5103: result: /usr/bin/nm -B
-configure:5233: checking the name lister (/usr/bin/nm -B) interface
-configure:5240: gcc -c -g -O2 -Wall conftest.c >&5
-configure:5243: /usr/bin/nm -B "conftest.o"
-configure:5246: output
+configure:4598: result: yes
+configure:4612: checking size of long long
+configure:4617: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:4617: $? = 0
+configure:4617: ./conftest
+configure:4617: $? = 0
+configure:4631: result: 8
+configure:4688: checking how to print strings
+configure:4715: result: printf
+configure:4736: checking for a sed that does not truncate output
+configure:4800: result: /bin/sed
+configure:4818: checking for fgrep
+configure:4880: result: /bin/grep -F
+configure:4915: checking for ld used by gcc
+configure:4982: result: /usr/bin/ld
+configure:4989: checking if the linker (/usr/bin/ld) is GNU ld
+configure:5004: result: yes
+configure:5016: checking for BSD- or MS-compatible name lister (nm)
+configure:5070: result: /usr/bin/nm -B
+configure:5200: checking the name lister (/usr/bin/nm -B) interface
+configure:5207: gcc -c -g -O2 -Wall conftest.c >&5
+configure:5210: /usr/bin/nm -B "conftest.o"
+configure:5213: output
00000000 B some_variable
-configure:5253: result: BSD nm
-configure:5256: checking whether ln -s works
-configure:5260: result: yes
-configure:5268: checking the maximum length of command line arguments
-configure:5399: result: 1572864
-configure:5447: checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format
-configure:5487: result: func_convert_file_noop
-configure:5494: checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format
-configure:5514: result: func_convert_file_noop
-configure:5521: checking for /usr/bin/ld option to reload object files
-configure:5528: result: -r
-configure:5602: checking for objdump
-configure:5618: found /usr/bin/objdump
-configure:5629: result: objdump
-configure:5661: checking how to recognize dependent libraries
-configure:5861: result: pass_all
-configure:5946: checking for dlltool
-configure:5976: result: no
-configure:6006: checking how to associate runtime and link libraries
-configure:6033: result: printf %s\n
-configure:6093: checking for ar
-configure:6109: found /usr/bin/ar
-configure:6120: result: ar
-configure:6157: checking for archiver @FILE support
-configure:6174: gcc -c -g -O2 -Wall conftest.c >&5
-configure:6174: $? = 0
-configure:6177: ar cru libconftest.a @conftest.lst >&5
+configure:5214: result: BSD nm
+configure:5217: checking whether ln -s works
+configure:5221: result: yes
+configure:5229: checking the maximum length of command line arguments
+configure:5360: result: 1572864
+configure:5408: checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format
+configure:5448: result: func_convert_file_noop
+configure:5455: checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format
+configure:5475: result: func_convert_file_noop
+configure:5482: checking for /usr/bin/ld option to reload object files
+configure:5489: result: -r
+configure:5563: checking for objdump
+configure:5579: found /usr/bin/objdump
+configure:5590: result: objdump
+configure:5622: checking how to recognize dependent libraries
+configure:5822: result: pass_all
+configure:5907: checking for dlltool
+configure:5937: result: no
+configure:5967: checking how to associate runtime and link libraries
+configure:5994: result: printf %s\n
+configure:6054: checking for ar
+configure:6070: found /usr/bin/ar
+configure:6081: result: ar
+configure:6118: checking for archiver @FILE support
+configure:6135: gcc -c -g -O2 -Wall conftest.c >&5
+configure:6135: $? = 0
+configure:6138: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
-configure:6180: $? = 0
-configure:6185: ar cru libconftest.a @conftest.lst >&5
+configure:6141: $? = 0
+configure:6146: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
ar: conftest.o: No such file or directory
-configure:6188: $? = 1
-configure:6200: result: @
-configure:6258: checking for strip
-configure:6274: found /usr/bin/strip
-configure:6285: result: strip
-configure:6357: checking for ranlib
-configure:6373: found /usr/bin/ranlib
-configure:6384: result: ranlib
-configure:6486: checking command to parse /usr/bin/nm -B output from gcc object
-configure:6639: gcc -c -g -O2 -Wall conftest.c >&5
-configure:6642: $? = 0
-configure:6646: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
-configure:6649: $? = 0
-configure:6715: gcc -o conftest -g -O2 -Wall conftest.c conftstm.o >&5
-configure:6718: $? = 0
-configure:6756: result: ok
-configure:6803: checking for sysroot
-configure:6833: result: no
-configure:6840: checking for a working dd
-configure:6878: result: /bin/dd
-configure:6882: checking how to truncate binary pipes
-configure:6897: result: /bin/dd bs=4096 count=1
-configure:7226: checking for mt
-configure:7242: found /bin/mt
-configure:7253: result: mt
-configure:7276: checking if mt is a manifest tool
-configure:7282: mt '-?'
-configure:7290: result: no
-configure:7964: checking for dlfcn.h
-configure:7964: gcc -c -g -O2 -Wall conftest.c >&5
-configure:7964: $? = 0
-configure:7964: result: yes
-configure:8220: checking for objdir
-configure:8235: result: .libs
-configure:8499: checking if gcc supports -fno-rtti -fno-exceptions
-configure:8517: gcc -c -g -O2 -Wall -fno-rtti -fno-exceptions conftest.c >&5
+configure:6149: $? = 1
+configure:6148: result: @
+configure:6206: checking for strip
+configure:6222: found /usr/bin/strip
+configure:6233: result: strip
+configure:6305: checking for ranlib
+configure:6321: found /usr/bin/ranlib
+configure:6332: result: ranlib
+configure:6434: checking command to parse /usr/bin/nm -B output from gcc object
+configure:6587: gcc -c -g -O2 -Wall conftest.c >&5
+configure:6590: $? = 0
+configure:6594: /usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' > conftest.nm
+configure:6660: gcc -o conftest -g -O2 -Wall conftest.c conftstm.o >&5
+configure:6663: $? = 0
+configure:6701: result: ok
+configure:6748: checking for sysroot
+configure:6778: result: no
+configure:6785: checking for a working dd
+configure:6823: result: /bin/dd
+configure:6827: checking how to truncate binary pipes
+configure:6842: result: /bin/dd bs=4096 count=1
+configure:7171: checking for mt
+configure:7187: found /bin/mt
+configure:7198: result: mt
+configure:7221: checking if mt is a manifest tool
+configure:7227: mt '-?'
+configure:7235: result: no
+configure:7909: checking for dlfcn.h
+configure:7909: gcc -c -g -O2 -Wall conftest.c >&5
+configure:7909: $? = 0
+configure:7909: result: yes
+configure:8165: checking for objdir
+configure:8180: result: .libs
+configure:8444: checking if gcc supports -fno-rtti -fno-exceptions
+configure:8462: gcc -c -g -O2 -Wall -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
-configure:8521: $? = 0
-configure:8534: result: no
-configure:8892: checking for gcc option to produce PIC
-configure:8899: result: -fPIC -DPIC
-configure:8907: checking if gcc PIC flag -fPIC -DPIC works
-configure:8925: gcc -c -g -O2 -Wall -fPIC -DPIC -DPIC conftest.c >&5
-configure:8929: $? = 0
-configure:8942: result: yes
-configure:8971: checking if gcc static flag -static works
-configure:8999: result: yes
+configure:8466: $? = 0
+configure:8479: result: no
+configure:8837: checking for gcc option to produce PIC
+configure:8844: result: -fPIC -DPIC
+configure:8852: checking if gcc PIC flag -fPIC -DPIC works
+configure:8870: gcc -c -g -O2 -Wall -fPIC -DPIC -DPIC conftest.c >&5
+configure:8874: $? = 0
+configure:8887: result: yes
+configure:8916: checking if gcc static flag -static works
+configure:8944: result: yes
+configure:8959: checking if gcc supports -c -o file.o
+configure:8980: gcc -c -g -O2 -Wall -o out/conftest2.o conftest.c >&5
+configure:8984: $? = 0
+configure:9006: result: yes
configure:9014: checking if gcc supports -c -o file.o
-configure:9035: gcc -c -g -O2 -Wall -o out/conftest2.o conftest.c >&5
-configure:9039: $? = 0
configure:9061: result: yes
-configure:9069: checking if gcc supports -c -o file.o
-configure:9116: result: yes
-configure:9149: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
-configure:10412: result: yes
-configure:10449: checking whether -lc should be explicitly linked in
-configure:10457: gcc -c -g -O2 -Wall conftest.c >&5
-configure:10460: $? = 0
-configure:10475: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
-configure:10478: $? = 0
-configure:10492: result: no
-configure:10652: checking dynamic linker characteristics
-configure:11233: gcc -o conftest -g -O2 -Wall -Wl,-rpath -Wl,/foo conftest.c >&5
-configure:11233: $? = 0
-configure:11482: result: GNU/Linux ld.so
-configure:11604: checking how to hardcode library paths into programs
-configure:11629: result: immediate
-configure:12177: checking whether stripping libraries is possible
-configure:12182: result: yes
-configure:12217: checking if libtool supports shared libraries
-configure:12219: result: yes
-configure:12222: checking whether to build shared libraries
-configure:12247: result: yes
-configure:12250: checking whether to build static libraries
-configure:12254: result: yes
-configure:12294: checking for pkg-config
-configure:12310: found /usr/bin/pkg-config
-configure:12322: result: yes
-configure:12333: checking for doxygen
-configure:12361: result: no
-configure:12421: checking for a Python interpreter with version >= 2.6
-configure:12438: python -c import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.6'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)
-configure:12441: $? = 0
-configure:12447: result: python
-configure:12455: checking for python
-configure:12473: found /usr/bin/python
-configure:12485: result: /usr/bin/python
-configure:12503: checking for python version
-configure:12510: result: 2.7
-configure:12522: checking for python platform
-configure:12529: result: linux2
-configure:12555: checking for python script directory
-configure:12590: result: ${prefix}/lib/python2.7/dist-packages
-configure:12599: checking for python extension module directory
-configure:12634: result: ${exec_prefix}/lib/python2.7/dist-packages
-configure:12655: checking for python2.7
-configure:12685: result: /usr/bin/python
-configure:12701: checking for a version of Python >= '2.1.0'
-configure:12727: result: yes
-configure:12758: checking for the distutils Python package
-configure:12762: result: yes
-configure:12776: checking for Python include path
-configure:12792: result: -I/usr/include/python2.7
-configure:12799: checking for Python library path
-configure:12876: result: -L/usr/lib -lpython2.7
-configure:12883: checking for Python site-packages path
-configure:12889: result: /usr/lib/python2.7/dist-packages
-configure:12896: checking python extra libraries
-configure:12903: result: -lpthread -ldl -lutil -lm
-configure:12910: checking python extra linking flags
-configure:12917: result: -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
-configure:12924: checking consistency of all components of python development environment
-configure:12950: gcc -o conftest -g -O2 -Wall -I/usr/include/python2.7 conftest.c -L/usr/lib -lpython2.7 -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions -lpthread -ldl -lutil -lm >&5
-configure:12950: $? = 0
-configure:12967: result: yes
-configure:12998: checking for swig
-configure:13016: found /usr/bin/swig
-configure:13028: result: /usr/bin/swig
-configure:13042: checking SWIG version
-configure:13045: result: 3.0.8
-configure:13094: checking for SWIG library
-configure:13097: result: /usr/share/swig3.0
-configure:13173: checking for pkg-config
-configure:13191: found /usr/bin/pkg-config
-configure:13203: result: /usr/bin/pkg-config
-configure:13228: checking pkg-config is at least version 0.9.0
-configure:13231: result: yes
-configure:13242: checking for GStreamer
-configure:13252: $PKG_CONFIG --exists --print-errors "gstreamer-$GST_MAJORMINOR >= 1.0
+configure:9094: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
+configure:10357: result: yes
+configure:10394: checking whether -lc should be explicitly linked in
+configure:10402: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10405: $? = 0
+configure:10420: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
+configure:10423: $? = 0
+configure:10437: result: no
+configure:10597: checking dynamic linker characteristics
+configure:11178: gcc -o conftest -g -O2 -Wall -Wl,-rpath -Wl,/foo conftest.c >&5
+configure:11178: $? = 0
+configure:11427: result: GNU/Linux ld.so
+configure:11549: checking how to hardcode library paths into programs
+configure:11574: result: immediate
+configure:12122: checking whether stripping libraries is possible
+configure:12127: result: yes
+configure:12162: checking if libtool supports shared libraries
+configure:12164: result: yes
+configure:12167: checking whether to build shared libraries
+configure:12192: result: yes
+configure:12195: checking whether to build static libraries
+configure:12199: result: yes
+configure:9015: checking for pkg-config
+configure:9031: found /usr/bin/pkg-config
+configure:9043: result: yes
+configure:9054: checking for doxygen
+configure:9082: result: no
+configure:9142: checking for a Python interpreter with version >= 2.6
+configure:9159: python -c import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.6'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)
+configure:9162: $? = 0
+configure:9168: result: python
+configure:9176: checking for python
+configure:9194: found /usr/bin/python
+configure:9206: result: /usr/bin/python
+configure:9224: checking for python version
+configure:9231: result: 2.7
+configure:9243: checking for python platform
+configure:9250: result: linux2
+configure:9276: checking for python script directory
+configure:9311: result: ${prefix}/lib/python2.7/dist-packages
+configure:9320: checking for python extension module directory
+configure:9355: result: ${exec_prefix}/lib/python2.7/dist-packages
+configure:9376: checking for python2.7
+configure:9406: result: /usr/bin/python
+configure:9422: checking for a version of Python >= '2.1.0'
+configure:9448: result: yes
+configure:9479: checking for the distutils Python package
+configure:9483: result: yes
+configure:9497: checking for Python include path
+configure:9513: result: -I/usr/include/python2.7
+configure:9520: checking for Python library path
+configure:9597: result: -L/usr/lib -lpython2.7
+configure:9604: checking for Python site-packages path
+configure:9610: result: /usr/lib/python2.7/dist-packages
+configure:9617: checking python extra libraries
+configure:9624: result: -lpthread -ldl -lutil -lm
+configure:9631: checking python extra linking flags
+configure:9638: result: -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
+configure:9645: checking consistency of all components of python development environment
+configure:9671: gcc -o conftest -g -O2 -Wall -I/usr/include/python2.7 conftest.c -L/usr/lib -lpython2.7 -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions -lpthread -ldl -lutil -lm >&5
+configure:9671: $? = 0
+configure:9688: result: yes
+configure:9719: checking for swig
+configure:9737: found /usr/bin/swig
+configure:9749: result: /usr/bin/swig
+configure:9763: checking SWIG version
+configure:9766: result: 3.0.12
+configure:9815: checking for SWIG library
+configure:9818: result: /usr/share/swig3.0
+configure:9894: checking for pkg-config
+configure:9912: found /usr/bin/pkg-config
+configure:9924: result: /usr/bin/pkg-config
+configure:9949: checking pkg-config is at least version 0.9.0
+configure:9952: result: yes
+configure:9963: checking for GStreamer
+configure:9973: $PKG_CONFIG --exists --print-errors "gstreamer-$GST_MAJORMINOR >= 1.0
gstreamer-base-$GST_MAJORMINOR >= 1.0
gstreamer-plugins-base-$GST_MAJORMINOR >= 1.0"
-Package gstreamer-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-1.0' found
-Package gstreamer-base-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-base-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-base-1.0' found
Package gstreamer-plugins-base-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gstreamer-plugins-base-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gstreamer-plugins-base-1.0' found
-configure:13257: $? = 1
-configure:13276: $PKG_CONFIG --exists --print-errors "gstreamer-$GST_MAJORMINOR >= 1.0
+configure:9978: $? = 1
+configure:9997: $PKG_CONFIG --exists --print-errors "gstreamer-$GST_MAJORMINOR >= 1.0
gstreamer-base-$GST_MAJORMINOR >= 1.0
gstreamer-plugins-base-$GST_MAJORMINOR >= 1.0"
-Package gstreamer-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-1.0' found
-Package gstreamer-base-1.0 was not found in the pkg-config search path.
-Perhaps you should add the directory containing `gstreamer-base-1.0.pc'
-to the PKG_CONFIG_PATH environment variable
-No package 'gstreamer-base-1.0' found
Package gstreamer-plugins-base-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gstreamer-plugins-base-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gstreamer-plugins-base-1.0' found
-configure:13281: $? = 1
-No package 'gstreamer-1.0' found
-No package 'gstreamer-base-1.0' found
+configure:10002: $? = 1
No package 'gstreamer-plugins-base-1.0' found
-configure:13315: result: no
-configure:13375: checking for sphinxbase in /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase
-configure:13383: result: no
-configure:13375: checking for sphinxbase in /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha
-configure:13379: result: yes
-configure:13619: checking that generated files are newer than configure
-configure:13625: result: done
-configure:13660: creating ./config.status
+configure:10036: result: no
+configure:10096: checking for sphinxbase in /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase
+configure:10104: result: no
+configure:10096: checking for sphinxbase in /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha
+configure:10100: result: yes
+configure:10332: checking that generated files are newer than configure
+configure:10338: result: done
+configure:10373: creating ./config.status
## ---------------------- ##
## Running config.status. ##
@@ -527,27 +514,42 @@ generated by GNU Autoconf 2.69. Invocation command line was
on pi
-config.status:1138: creating pocketsphinx.pc
-config.status:1138: creating Makefile
-config.status:1138: creating include/Makefile
-config.status:1138: creating src/Makefile
-config.status:1138: creating swig/Makefile
-config.status:1138: creating swig/python/Makefile
-config.status:1138: creating swig/python/test/Makefile
-config.status:1138: creating src/libpocketsphinx/Makefile
-config.status:1138: creating src/programs/Makefile
-config.status:1138: creating src/gst-plugin/Makefile
-config.status:1138: creating doc/Makefile
-config.status:1138: creating doc/doxyfile
-config.status:1138: creating model/Makefile
-config.status:1138: creating test/Makefile
-config.status:1138: creating test/testfuncs.sh
-config.status:1138: creating test/unit/Makefile
-config.status:1138: creating test/regression/Makefile
-config.status:1138: creating include/config.h
-config.status:1319: include/config.h is unchanged
-config.status:1367: executing depfiles commands
-config.status:1367: executing libtool commands
+config.status:1134: creating pocketsphinx.pc
+config.status:1134: creating Makefile
+config.status:1134: creating include/Makefile
+config.status:1134: creating src/Makefile
+config.status:1134: creating swig/Makefile
+config.status:1134: creating swig/python/Makefile
+config.status:1134: creating swig/python/test/Makefile
+config.status:1134: creating src/libpocketsphinx/Makefile
+config.status:1134: creating src/programs/Makefile
+config.status:1134: creating src/gst-plugin/Makefile
+config.status:1134: creating doc/Makefile
+config.status:1134: creating doc/doxyfile
+config.status:1134: creating model/Makefile
+config.status:1134: creating test/Makefile
+config.status:1134: creating test/testfuncs.sh
+config.status:1134: creating test/unit/Makefile
+config.status:1134: creating test/regression/Makefile
+config.status:1134: creating include/config.h
+config.status:1315: include/config.h is unchanged
+config.status:1363: executing depfiles commands
+config.status:1440: cd swig/python && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1445: $? = 0
+config.status:1440: cd src/libpocketsphinx && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1445: $? = 0
+config.status:1440: cd src/programs && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1445: $? = 0
+config.status:1440: cd src/gst-plugin && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1445: $? = 0
+config.status:1440: cd test/unit && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1445: $? = 0
+config.status:1363: executing libtool commands
## ---------------- ##
## Cache variables. ##
@@ -612,7 +614,7 @@ ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_lt_DD=/bin/dd
ac_cv_path_mkdir=/bin/mkdir
-ac_cv_prog_AWK=gawk
+ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_HAVE_DOXYGEN=no
ac_cv_prog_HAVE_PKGCONFIG=yes
@@ -653,7 +655,7 @@ lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_gnu_ld=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
-lt_cv_shlibpath_overrides_runpath=no
+lt_cv_shlibpath_overrides_runpath=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\'''
@@ -668,7 +670,7 @@ lt_cv_truncate_bin='/bin/dd bs=4096 count=1'
## Output variables. ##
## ----------------- ##
-ACLOCAL='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15'
+ACLOCAL='${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
@@ -678,10 +680,10 @@ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='1'
AM_V='$(V)'
AR='ar'
-AUTOCONF='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf'
-AUTOHEADER='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader'
-AUTOMAKE='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15'
-AWK='gawk'
+AUTOCONF='${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf'
+AUTOHEADER='${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader'
+AUTOMAKE='${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16'
+AWK='mawk'
BUILD_DOXYGEN_FALSE=''
BUILD_DOXYGEN_TRUE='#'
BUILD_GST_FALSE=''
@@ -692,7 +694,7 @@ CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2 -Wall'
CPP='gcc -E'
-CPPFLAGS=' -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase'
+CPPFLAGS=' -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
@@ -719,7 +721,7 @@ INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LD='/usr/bin/ld'
-LDFLAGS=' -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase'
+LDFLAGS=' -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase'
LIBOBJS=''
LIBS=' -lsphinxbase'
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
@@ -727,7 +729,7 @@ LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
LT_SYS_LIBRARY_PATH=''
-MAKEINFO='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo'
+MAKEINFO='${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
NM='/usr/bin/nm -B'
@@ -761,7 +763,7 @@ SET_MAKE=''
SHELL='/bin/bash'
SPHINXBASE_CFLAGS=''
SPHINXBASE_LIBS=''
-SPHINXBASE_SWIG='/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig'
+SPHINXBASE_SWIG='/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig'
STRIP='strip'
SWIG='/usr/bin/swig'
SWIG_LIB='/usr/share/swig3.0'
@@ -799,7 +801,7 @@ host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
-install_sh='${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh'
+install_sh='${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
@@ -866,5 +868,5 @@ generated by GNU Autoconf 2.69. Invocation command line was
on pi
-config.status:1138: creating include/config.h
-config.status:1319: include/config.h is unchanged
+config.status:1134: creating include/config.h
+config.status:1315: include/config.h is unchanged
diff --git a/pocketsphinx-5prealpha/config.status b/pocketsphinx-5prealpha/config.status
index 4542bb9..8adf7ce 100755
--- a/pocketsphinx-5prealpha/config.status
+++ b/pocketsphinx-5prealpha/config.status
@@ -437,11 +437,11 @@ Copyright (C) 2012 Free Software Foundation, Inc.
This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it."
-ac_pwd='/home/pi/speech2text/pocketsphinx-5prealpha'
+ac_pwd='/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha'
srcdir='.'
INSTALL='/usr/bin/install -c'
MKDIR_P='/bin/mkdir -p'
-AWK='gawk'
+AWK='mawk'
test -n "$AWK" || AWK=awk
# The default lists apply if the user does not specify any file.
ac_need_defaults=:
@@ -539,7 +539,7 @@ _ASBOX
#
# INIT-COMMANDS
#
-AMDEP_TRUE="" ac_aux_dir="."
+AMDEP_TRUE="" MAKE="make"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -554,7 +554,7 @@ macro_revision='2.4.6'
enable_shared='yes'
enable_static='yes'
pic_mode='default'
-enable_fast_install='yes'
+enable_fast_install='needless'
shared_archive_member_spec=''
SHELL='/bin/bash'
ECHO='printf %s\n'
@@ -668,7 +668,7 @@ need_version='no'
version_type='linux'
runpath_var='LD_RUN_PATH'
shlibpath_var='LD_LIBRARY_PATH'
-shlibpath_overrides_runpath='no'
+shlibpath_overrides_runpath='yes'
libname_spec='lib$name'
library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
soname_spec='$libname$release$shared_ext$major'
@@ -678,8 +678,8 @@ postuninstall_cmds=''
finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
finish_eval=''
hardcode_into_libs='yes'
-sys_lib_search_path_spec='/usr/lib/gcc/arm-linux-gnueabihf/5 /usr/lib/arm-linux-gnueabihf /usr/lib /lib/arm-linux-gnueabihf /lib '
-configure_time_dlsearch_path='/lib /usr/lib /opt/vc/lib /lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/mesa-egl /usr/lib/arm-linux-gnueabihf/mesa /usr/local/lib /usr/local/lib '
+sys_lib_search_path_spec='/usr/lib/gcc/arm-linux-gnueabihf/8 /usr/lib/arm-linux-gnueabihf /usr/lib /lib/arm-linux-gnueabihf /lib '
+configure_time_dlsearch_path='/lib /usr/lib /opt/vc/lib /usr/local/lib/arm-linux-gnueabihf /lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/libfakeroot /usr/local/lib '
configure_time_lt_sys_library_path=''
hardcode_action='immediate'
enable_dlopen='unknown'
@@ -835,7 +835,7 @@ S["am__EXEEXT_FALSE"]=""
S["am__EXEEXT_TRUE"]="#"
S["LTLIBOBJS"]=""
S["LIBOBJS"]=""
-S["SPHINXBASE_SWIG"]="/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig"
+S["SPHINXBASE_SWIG"]="/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig"
S["SPHINXBASE_LIBS"]=""
S["SPHINXBASE_CFLAGS"]=""
S["GST_PLUGIN_LDFLAGS"]="-module -avoid-version -export-symbols-regex _*\\(gst_\\|Gst\\|GST_\\).*"
@@ -900,16 +900,15 @@ S["am__nodep"]="_no"
S["AMDEPBACKSLASH"]="\\"
S["AMDEP_FALSE"]="#"
S["AMDEP_TRUE"]=""
-S["am__quote"]=""
S["am__include"]="include"
S["DEPDIR"]=".deps"
S["OBJEXT"]="o"
S["EXEEXT"]=""
S["ac_ct_CC"]="gcc"
-S["CPPFLAGS"]=" -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha"\
-"/include/sphinxbase"
-S["LDFLAGS"]=" -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src"\
-"/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase"
+S["CPPFLAGS"]=" -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxba"\
+"se-5prealpha/include/sphinxbase"
+S["LDFLAGS"]=" -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5"\
+"prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase"
S["CFLAGS"]="-g -O2 -Wall"
S["CC"]="gcc"
S["host_os"]="linux-gnueabihf"
@@ -929,17 +928,17 @@ S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
S["AMTAR"]="$${TAR-tar}"
S["am__leading_dot"]="."
S["SET_MAKE"]=""
-S["AWK"]="gawk"
+S["AWK"]="mawk"
S["mkdir_p"]="$(MKDIR_P)"
S["MKDIR_P"]="/bin/mkdir -p"
S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
S["STRIP"]="strip"
-S["install_sh"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh"
-S["MAKEINFO"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo"
-S["AUTOHEADER"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader"
-S["AUTOMAKE"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15"
-S["AUTOCONF"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf"
-S["ACLOCAL"]="${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15"
+S["install_sh"]="${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh"
+S["MAKEINFO"]="${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo"
+S["AUTOHEADER"]="${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader"
+S["AUTOMAKE"]="${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16"
+S["AUTOCONF"]="${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf"
+S["ACLOCAL"]="${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16"
S["VERSION"]="5prealpha"
S["PACKAGE"]="pocketsphinx"
S["CYGPATH_W"]="echo"
@@ -986,6 +985,7 @@ S["PACKAGE_TARNAME"]="pocketsphinx"
S["PACKAGE_NAME"]="pocketsphinx"
S["PATH_SEPARATOR"]=":"
S["SHELL"]="/bin/bash"
+S["am__quote"]=""
_ACAWK
cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
for (key in S) S_is_set[key] = 1
@@ -1375,29 +1375,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ case $CONFIG_FILES in #(
+ *\'*) :
+ eval set x "$CONFIG_FILES" ;; #(
+ *) :
+ set x $CONFIG_FILES ;; #(
+ *) :
+ ;;
+esac
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`$as_dirname -- "$am_mf" ||
+$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$am_mf" : 'X\(//\)[^/]' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$am_mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -1415,53 +1421,48 @@ $as_echo X"$mf" |
q
}
s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
+ am_filepart=`$as_basename -- "$am_mf" ||
+$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$am_mf" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
- /^X\(\/\/\)$/{
+ /^X\/\(\/\/\)$/{
s//\1/
q
}
- /^X\(\/\).*/{
+ /^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles" >&5
+ (cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ { am_dirpart=; unset am_dirpart;}
+ { am_filepart=; unset am_filepart;}
+ { am_mf=; unset am_mf;}
+ { am_rc=; unset am_rc;}
+ rm -f conftest-deps.mk
}
;;
"libtool":C)
@@ -1479,7 +1480,6 @@ $as_echo X"$file" |
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
diff --git a/pocketsphinx-5prealpha/configure b/pocketsphinx-5prealpha/configure
index 54b2e89..86250c6 100755
--- a/pocketsphinx-5prealpha/configure
+++ b/pocketsphinx-5prealpha/configure
@@ -697,7 +697,6 @@ am__nodep
AMDEPBACKSLASH
AMDEP_FALSE
AMDEP_TRUE
-am__quote
am__include
DEPDIR
OBJEXT
@@ -780,7 +779,8 @@ PACKAGE_VERSION
PACKAGE_TARNAME
PACKAGE_NAME
PATH_SEPARATOR
-SHELL'
+SHELL
+am__quote'
ac_subst_files=''
ac_user_opts='
enable_option_checking
@@ -2517,7 +2517,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers include/config.h"
-am__api_version='1.15'
+am__api_version='1.16'
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
@@ -3053,8 +3053,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
mkdir_p='$(MKDIR_P)'
# We need awk for the "check" target (and possibly the TAP driver). The
@@ -3105,7 +3105,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -4042,45 +4042,45 @@ DEPDIR="${am__leading_dot}deps"
ac_config_commands="$ac_config_commands depfiles"
-
-am_make=${MAKE-make}
-cat > confinc << 'END'
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
+$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
+ (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ case $?:`cat confinc.out 2>/dev/null` in #(
+ '0:this is the am__doit target') :
+ case $s in #(
+ BSD) :
+ am__include='.include' am__quote='"' ;; #(
+ *) :
+ am__include='include' am__quote='' ;;
+esac ;; #(
+ *) :
;;
- esac
-fi
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-$as_echo "$_am_result" >&6; }
-rm -f confinc confmf
+esac
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
+$as_echo "${_am_result}" >&6; }
# Check whether --enable-dependency-tracking was given.
if test "${enable_dependency_tracking+set}" = set; then :
@@ -6643,11 +6643,8 @@ _LT_EOF
test $ac_status = 0; }; then
# Now try to grab the symbols.
nlist=conftest.nm
- if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5
- (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && test -s "$nlist"; then
+ $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5
+ if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
mv -f "$nlist"T "$nlist"
@@ -12424,7 +12421,7 @@ if ${am_cv_pathless_PYTHON+:} false; then :
$as_echo_n "(cached) " >&6
else
- for am_cv_pathless_PYTHON in python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
+ for am_cv_pathless_PYTHON in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
test "$am_cv_pathless_PYTHON" = none && break
prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
@@ -14234,7 +14231,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
#
# INIT-COMMANDS
#
-AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
+AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -15146,29 +15143,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ case $CONFIG_FILES in #(
+ *\'*) :
+ eval set x "$CONFIG_FILES" ;; #(
+ *) :
+ set x $CONFIG_FILES ;; #(
+ *) :
+ ;;
+esac
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`$as_dirname -- "$am_mf" ||
+$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$am_mf" : 'X\(//\)[^/]' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$am_mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -15186,53 +15189,48 @@ $as_echo X"$mf" |
q
}
s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
+ am_filepart=`$as_basename -- "$am_mf" ||
+$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$am_mf" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
- /^X\(\/\/\)$/{
+ /^X\/\(\/\/\)$/{
s//\1/
q
}
- /^X\(\/\).*/{
+ /^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles" >&5
+ (cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ { am_dirpart=; unset am_dirpart;}
+ { am_filepart=; unset am_filepart;}
+ { am_mf=; unset am_mf;}
+ { am_rc=; unset am_rc;}
+ rm -f conftest-deps.mk
}
;;
"libtool":C)
@@ -15250,7 +15248,6 @@ $as_echo X"$file" |
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
diff --git a/pocketsphinx-5prealpha/depcomp b/pocketsphinx-5prealpha/depcomp
index fc98710..65cbf70 100755
--- a/pocketsphinx-5prealpha/depcomp
+++ b/pocketsphinx-5prealpha/depcomp
@@ -1,9 +1,9 @@
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
-scriptversion=2013-05-30.07; # UTC
+scriptversion=2018-03-07.03; # UTC
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -16,7 +16,7 @@ scriptversion=2013-05-30.07; # UTC
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
+# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
@@ -783,9 +783,9 @@ exit 0
# Local Variables:
# mode: shell-script
# sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
diff --git a/pocketsphinx-5prealpha/doc/Makefile b/pocketsphinx-5prealpha/doc/Makefile
index 63f3f2f..d59a97d 100644
--- a/pocketsphinx-5prealpha/doc/Makefile
+++ b/pocketsphinx-5prealpha/doc/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# doc/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -155,19 +155,19 @@ MANS = $(man_MANS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/doxyfile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -195,7 +195,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -203,7 +203,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -237,15 +237,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/doc
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/doc
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/doc
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/doc
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -274,7 +274,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -349,8 +349,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -419,7 +419,10 @@ ctags CTAGS:
cscope cscopelist:
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/doc/Makefile.in b/pocketsphinx-5prealpha/doc/Makefile.in
index 982c7a7..c9e4e4e 100644
--- a/pocketsphinx-5prealpha/doc/Makefile.in
+++ b/pocketsphinx-5prealpha/doc/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -349,8 +349,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -419,7 +419,10 @@ ctags CTAGS:
cscope cscopelist:
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/include/Makefile b/pocketsphinx-5prealpha/include/Makefile
index cb37972..b988518 100644
--- a/pocketsphinx-5prealpha/include/Makefile
+++ b/pocketsphinx-5prealpha/include/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# include/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -174,19 +174,19 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -214,7 +214,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -222,7 +222,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -256,15 +256,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/include
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/include
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/include
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/include
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -293,7 +293,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -348,8 +348,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -455,7 +455,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/include/Makefile.in b/pocketsphinx-5prealpha/include/Makefile.in
index 2e47a6c..4df87d0 100644
--- a/pocketsphinx-5prealpha/include/Makefile.in
+++ b/pocketsphinx-5prealpha/include/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -348,8 +348,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -455,7 +455,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/libtool b/pocketsphinx-5prealpha/libtool
index 009c42d..346c3c8 100755
--- a/pocketsphinx-5prealpha/libtool
+++ b/pocketsphinx-5prealpha/libtool
@@ -1,6 +1,5 @@
#! /bin/bash
# Generated automatically by config.status (pocketsphinx) 5prealpha
-# Libtool was configured on host pi:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
@@ -51,7 +50,7 @@ build_old_libs=yes
pic_mode=default
# Whether or not to optimize for fast installation.
-fast_install=yes
+fast_install=needless
# Shared archive member basename,for filename based shared library versioning on AIX.
shared_archive_member_spec=
@@ -250,7 +249,7 @@ runpath_var=LD_RUN_PATH
shlibpath_var=LD_LIBRARY_PATH
# Is shlibpath searched before the hard-coded library search path?
-shlibpath_overrides_runpath=no
+shlibpath_overrides_runpath=yes
# Format of library name prefix.
libname_spec="lib\$name"
@@ -282,10 +281,10 @@ finish_eval=""
hardcode_into_libs=yes
# Compile-time system search path for libraries.
-sys_lib_search_path_spec="/usr/lib/gcc/arm-linux-gnueabihf/5 /usr/lib/arm-linux-gnueabihf /usr/lib /lib/arm-linux-gnueabihf /lib "
+sys_lib_search_path_spec="/usr/lib/gcc/arm-linux-gnueabihf/8 /usr/lib/arm-linux-gnueabihf /usr/lib /lib/arm-linux-gnueabihf /lib "
# Detected run-time system search path for libraries.
-sys_lib_dlsearch_path_spec="/lib /usr/lib /opt/vc/lib /lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/mesa-egl /usr/lib/arm-linux-gnueabihf/mesa /usr/local/lib /usr/local/lib "
+sys_lib_dlsearch_path_spec="/lib /usr/lib /opt/vc/lib /usr/local/lib/arm-linux-gnueabihf /lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/libfakeroot /usr/local/lib "
# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.
configure_time_lt_sys_library_path=""
@@ -529,7 +528,7 @@ func_cc_basename ()
PROGRAM=libtool
PACKAGE=libtool
-VERSION="2.4.6 Debian-2.4.6-0.1"
+VERSION="2.4.6 Debian-2.4.6-9"
package_revision=2.4.6
@@ -1868,7 +1867,7 @@ func_lt_ver ()
#! /bin/sh
# Set a version string for this script.
-scriptversion=2014-01-07.03; # UTC
+scriptversion=2015-10-07.11; # UTC
# A portable, pluggable option parser for Bourne shell.
# Written by Gary V. Vaughan, 2010
@@ -2028,6 +2027,8 @@ func_run_hooks ()
{
$debug_cmd
+ _G_rc_run_hooks=false
+
case " $hookable_fns " in
*" $1 "*) ;;
*) func_fatal_error "'$1' does not support hook funcions.n" ;;
@@ -2036,16 +2037,16 @@ func_run_hooks ()
eval _G_hook_fns=\$$1_hooks; shift
for _G_hook in $_G_hook_fns; do
- eval $_G_hook '"$@"'
-
- # store returned options list back into positional
- # parameters for next 'cmd' execution.
- eval _G_hook_result=\$${_G_hook}_result
- eval set dummy "$_G_hook_result"; shift
+ if eval $_G_hook '"$@"'; then
+ # store returned options list back into positional
+ # parameters for next 'cmd' execution.
+ eval _G_hook_result=\$${_G_hook}_result
+ eval set dummy "$_G_hook_result"; shift
+ _G_rc_run_hooks=:
+ fi
done
- func_quote_for_eval ${1+"$@"}
- func_run_hooks_result=$func_quote_for_eval_result
+ $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result
}
@@ -2055,10 +2056,16 @@ func_run_hooks ()
## --------------- ##
# In order to add your own option parsing hooks, you must accept the
-# full positional parameter list in your hook function, remove any
-# options that you action, and then pass back the remaining unprocessed
+# full positional parameter list in your hook function, you may remove/edit
+# any options that you action, and then pass back the remaining unprocessed
# options in '_result', escaped suitably for
-# 'eval'. Like this:
+# 'eval'. In this case you also must return $EXIT_SUCCESS to let the
+# hook's caller know that it should pay attention to
+# '_result'. Returning $EXIT_FAILURE signalizes that
+# arguments are left untouched by the hook and therefore caller will ignore the
+# result variable.
+#
+# Like this:
#
# my_options_prep ()
# {
@@ -2068,9 +2075,11 @@ func_run_hooks ()
# usage_message=$usage_message'
# -s, --silent don'\''t print informational messages
# '
-#
-# func_quote_for_eval ${1+"$@"}
-# my_options_prep_result=$func_quote_for_eval_result
+# # No change in '$@' (ignored completely by this hook). There is
+# # no need to do the equivalent (but slower) action:
+# # func_quote_for_eval ${1+"$@"}
+# # my_options_prep_result=$func_quote_for_eval_result
+# false
# }
# func_add_hook func_options_prep my_options_prep
#
@@ -2079,25 +2088,37 @@ func_run_hooks ()
# {
# $debug_cmd
#
+# args_changed=false
+#
# # Note that for efficiency, we parse as many options as we can
# # recognise in a loop before passing the remainder back to the
# # caller on the first unrecognised argument we encounter.
# while test $# -gt 0; do
# opt=$1; shift
# case $opt in
-# --silent|-s) opt_silent=: ;;
+# --silent|-s) opt_silent=:
+# args_changed=:
+# ;;
# # Separate non-argument short options:
# -s*) func_split_short_opt "$_G_opt"
# set dummy "$func_split_short_opt_name" \
# "-$func_split_short_opt_arg" ${1+"$@"}
# shift
+# args_changed=:
# ;;
-# *) set dummy "$_G_opt" "$*"; shift; break ;;
+# *) # Make sure the first unrecognised option "$_G_opt"
+# # is added back to "$@", we could need that later
+# # if $args_changed is true.
+# set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
# esac
# done
#
-# func_quote_for_eval ${1+"$@"}
-# my_silent_option_result=$func_quote_for_eval_result
+# if $args_changed; then
+# func_quote_for_eval ${1+"$@"}
+# my_silent_option_result=$func_quote_for_eval_result
+# fi
+#
+# $args_changed
# }
# func_add_hook func_parse_options my_silent_option
#
@@ -2109,16 +2130,32 @@ func_run_hooks ()
# $opt_silent && $opt_verbose && func_fatal_help "\
# '--silent' and '--verbose' options are mutually exclusive."
#
-# func_quote_for_eval ${1+"$@"}
-# my_option_validation_result=$func_quote_for_eval_result
+# false
# }
# func_add_hook func_validate_options my_option_validation
#
-# You'll alse need to manually amend $usage_message to reflect the extra
+# You'll also need to manually amend $usage_message to reflect the extra
# options you parse. It's preferable to append if you can, so that
# multiple option parsing hooks can be added safely.
+# func_options_finish [ARG]...
+# ----------------------------
+# Finishing the option parse loop (call 'func_options' hooks ATM).
+func_options_finish ()
+{
+ $debug_cmd
+
+ _G_func_options_finish_exit=false
+ if func_run_hooks func_options ${1+"$@"}; then
+ func_options_finish_result=$func_run_hooks_result
+ _G_func_options_finish_exit=:
+ fi
+
+ $_G_func_options_finish_exit
+}
+
+
# func_options [ARG]...
# ---------------------
# All the functions called inside func_options are hookable. See the
@@ -2128,17 +2165,28 @@ func_options ()
{
$debug_cmd
- func_options_prep ${1+"$@"}
- eval func_parse_options \
- ${func_options_prep_result+"$func_options_prep_result"}
- eval func_validate_options \
- ${func_parse_options_result+"$func_parse_options_result"}
+ _G_rc_options=false
- eval func_run_hooks func_options \
- ${func_validate_options_result+"$func_validate_options_result"}
+ for my_func in options_prep parse_options validate_options options_finish
+ do
+ if eval func_$my_func '${1+"$@"}'; then
+ eval _G_res_var='$'"func_${my_func}_result"
+ eval set dummy "$_G_res_var" ; shift
+ _G_rc_options=:
+ fi
+ done
+
+ # Save modified positional parameters for caller. As a top-level
+ # options-parser function we always need to set the 'func_options_result'
+ # variable (regardless the $_G_rc_options value).
+ if $_G_rc_options; then
+ func_options_result=$_G_res_var
+ else
+ func_quote_for_eval ${1+"$@"}
+ func_options_result=$func_quote_for_eval_result
+ fi
- # save modified positional parameters for caller
- func_options_result=$func_run_hooks_result
+ $_G_rc_options
}
@@ -2147,9 +2195,9 @@ func_options ()
# All initialisations required before starting the option parse loop.
# Note that when calling hook functions, we pass through the list of
# positional parameters. If a hook function modifies that list, and
-# needs to propogate that back to rest of this script, then the complete
+# needs to propagate that back to rest of this script, then the complete
# modified list must be put in 'func_run_hooks_result' before
-# returning.
+# returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned).
func_hookable func_options_prep
func_options_prep ()
{
@@ -2159,10 +2207,14 @@ func_options_prep ()
opt_verbose=false
opt_warning_types=
- func_run_hooks func_options_prep ${1+"$@"}
+ _G_rc_options_prep=false
+ if func_run_hooks func_options_prep ${1+"$@"}; then
+ _G_rc_options_prep=:
+ # save modified positional parameters for caller
+ func_options_prep_result=$func_run_hooks_result
+ fi
- # save modified positional parameters for caller
- func_options_prep_result=$func_run_hooks_result
+ $_G_rc_options_prep
}
@@ -2176,18 +2228,20 @@ func_parse_options ()
func_parse_options_result=
+ _G_rc_parse_options=false
# this just eases exit handling
while test $# -gt 0; do
# Defer to hook functions for initial option parsing, so they
# get priority in the event of reusing an option name.
- func_run_hooks func_parse_options ${1+"$@"}
-
- # Adjust func_parse_options positional parameters to match
- eval set dummy "$func_run_hooks_result"; shift
+ if func_run_hooks func_parse_options ${1+"$@"}; then
+ eval set dummy "$func_run_hooks_result"; shift
+ _G_rc_parse_options=:
+ fi
# Break out of the loop if we already parsed every option.
test $# -gt 0 || break
+ _G_match_parse_options=:
_G_opt=$1
shift
case $_G_opt in
@@ -2202,7 +2256,10 @@ func_parse_options ()
;;
--warnings|--warning|-W)
- test $# = 0 && func_missing_arg $_G_opt && break
+ if test $# = 0 && func_missing_arg $_G_opt; then
+ _G_rc_parse_options=:
+ break
+ fi
case " $warning_categories $1" in
*" $1 "*)
# trailing space prevents matching last $1 above
@@ -2255,15 +2312,25 @@ func_parse_options ()
shift
;;
- --) break ;;
+ --) _G_rc_parse_options=: ; break ;;
-*) func_fatal_help "unrecognised option: '$_G_opt'" ;;
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+ *) set dummy "$_G_opt" ${1+"$@"}; shift
+ _G_match_parse_options=false
+ break
+ ;;
esac
+
+ $_G_match_parse_options && _G_rc_parse_options=:
done
- # save modified positional parameters for caller
- func_quote_for_eval ${1+"$@"}
- func_parse_options_result=$func_quote_for_eval_result
+
+ if $_G_rc_parse_options; then
+ # save modified positional parameters for caller
+ func_quote_for_eval ${1+"$@"}
+ func_parse_options_result=$func_quote_for_eval_result
+ fi
+
+ $_G_rc_parse_options
}
@@ -2276,16 +2343,21 @@ func_validate_options ()
{
$debug_cmd
+ _G_rc_validate_options=false
+
# Display all warnings if -W was not given.
test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
- func_run_hooks func_validate_options ${1+"$@"}
+ if func_run_hooks func_validate_options ${1+"$@"}; then
+ # save modified positional parameters for caller
+ func_validate_options_result=$func_run_hooks_result
+ _G_rc_validate_options=:
+ fi
# Bail if the options were screwed!
$exit_cmd $EXIT_FAILURE
- # save modified positional parameters for caller
- func_validate_options_result=$func_run_hooks_result
+ $_G_rc_validate_options
}
@@ -2566,7 +2638,7 @@ include the following information:
compiler: $LTCC
compiler flags: $LTCFLAGS
linker: $LD (gnu? $with_gnu_ld)
- version: $progname (GNU libtool) 2.4.6
+ version: $progname $scriptversion Debian-2.4.6-9
automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
@@ -2768,6 +2840,8 @@ libtool_options_prep ()
nonopt=
preserve_args=
+ _G_rc_lt_options_prep=:
+
# Shorthand for --mode=foo, only valid as the first argument
case $1 in
clean|clea|cle|cl)
@@ -2791,11 +2865,18 @@ libtool_options_prep ()
uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
shift; set dummy --mode uninstall ${1+"$@"}; shift
;;
+ *)
+ _G_rc_lt_options_prep=false
+ ;;
esac
- # Pass back the list of options.
- func_quote_for_eval ${1+"$@"}
- libtool_options_prep_result=$func_quote_for_eval_result
+ if $_G_rc_lt_options_prep; then
+ # Pass back the list of options.
+ func_quote_for_eval ${1+"$@"}
+ libtool_options_prep_result=$func_quote_for_eval_result
+ fi
+
+ $_G_rc_lt_options_prep
}
func_add_hook func_options_prep libtool_options_prep
@@ -2807,9 +2888,12 @@ libtool_parse_options ()
{
$debug_cmd
+ _G_rc_lt_parse_options=false
+
# Perform our own loop to consume as many options as possible in
# each iteration.
while test $# -gt 0; do
+ _G_match_lt_parse_options=:
_G_opt=$1
shift
case $_G_opt in
@@ -2884,15 +2968,22 @@ libtool_parse_options ()
func_append preserve_args " $_G_opt"
;;
- # An option not handled by this hook function:
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+ # An option not handled by this hook function:
+ *) set dummy "$_G_opt" ${1+"$@"} ; shift
+ _G_match_lt_parse_options=false
+ break
+ ;;
esac
+ $_G_match_lt_parse_options && _G_rc_lt_parse_options=:
done
+ if $_G_rc_lt_parse_options; then
+ # save modified positional parameters for caller
+ func_quote_for_eval ${1+"$@"}
+ libtool_parse_options_result=$func_quote_for_eval_result
+ fi
- # save modified positional parameters for caller
- func_quote_for_eval ${1+"$@"}
- libtool_parse_options_result=$func_quote_for_eval_result
+ $_G_rc_lt_parse_options
}
func_add_hook func_parse_options libtool_parse_options
@@ -7773,10 +7864,11 @@ func_mode_link ()
# -specs=* GCC specs files
# -stdlib=* select c++ std lib with clang
# -fsanitize=* Clang/GCC memory and address sanitizer
+ # -fuse-ld=* Linker select flags for GCC
-64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
-t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
-O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
- -specs=*|-fsanitize=*)
+ -specs=*|-fsanitize=*|-fuse-ld=*)
func_quote_for_eval "$arg"
arg=$func_quote_for_eval_result
func_append compile_command " $arg"
diff --git a/pocketsphinx-5prealpha/ltmain.sh b/pocketsphinx-5prealpha/ltmain.sh
index 147d758..c12c197 100644
--- a/pocketsphinx-5prealpha/ltmain.sh
+++ b/pocketsphinx-5prealpha/ltmain.sh
@@ -31,7 +31,7 @@
PROGRAM=libtool
PACKAGE=libtool
-VERSION="2.4.6 Debian-2.4.6-0.1"
+VERSION="2.4.6 Debian-2.4.6-9"
package_revision=2.4.6
@@ -1370,7 +1370,7 @@ func_lt_ver ()
#! /bin/sh
# Set a version string for this script.
-scriptversion=2014-01-07.03; # UTC
+scriptversion=2015-10-07.11; # UTC
# A portable, pluggable option parser for Bourne shell.
# Written by Gary V. Vaughan, 2010
@@ -1530,6 +1530,8 @@ func_run_hooks ()
{
$debug_cmd
+ _G_rc_run_hooks=false
+
case " $hookable_fns " in
*" $1 "*) ;;
*) func_fatal_error "'$1' does not support hook funcions.n" ;;
@@ -1538,16 +1540,16 @@ func_run_hooks ()
eval _G_hook_fns=\$$1_hooks; shift
for _G_hook in $_G_hook_fns; do
- eval $_G_hook '"$@"'
-
- # store returned options list back into positional
- # parameters for next 'cmd' execution.
- eval _G_hook_result=\$${_G_hook}_result
- eval set dummy "$_G_hook_result"; shift
+ if eval $_G_hook '"$@"'; then
+ # store returned options list back into positional
+ # parameters for next 'cmd' execution.
+ eval _G_hook_result=\$${_G_hook}_result
+ eval set dummy "$_G_hook_result"; shift
+ _G_rc_run_hooks=:
+ fi
done
- func_quote_for_eval ${1+"$@"}
- func_run_hooks_result=$func_quote_for_eval_result
+ $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result
}
@@ -1557,10 +1559,16 @@ func_run_hooks ()
## --------------- ##
# In order to add your own option parsing hooks, you must accept the
-# full positional parameter list in your hook function, remove any
-# options that you action, and then pass back the remaining unprocessed
+# full positional parameter list in your hook function, you may remove/edit
+# any options that you action, and then pass back the remaining unprocessed
# options in '_result', escaped suitably for
-# 'eval'. Like this:
+# 'eval'. In this case you also must return $EXIT_SUCCESS to let the
+# hook's caller know that it should pay attention to
+# '_result'. Returning $EXIT_FAILURE signalizes that
+# arguments are left untouched by the hook and therefore caller will ignore the
+# result variable.
+#
+# Like this:
#
# my_options_prep ()
# {
@@ -1570,9 +1578,11 @@ func_run_hooks ()
# usage_message=$usage_message'
# -s, --silent don'\''t print informational messages
# '
-#
-# func_quote_for_eval ${1+"$@"}
-# my_options_prep_result=$func_quote_for_eval_result
+# # No change in '$@' (ignored completely by this hook). There is
+# # no need to do the equivalent (but slower) action:
+# # func_quote_for_eval ${1+"$@"}
+# # my_options_prep_result=$func_quote_for_eval_result
+# false
# }
# func_add_hook func_options_prep my_options_prep
#
@@ -1581,25 +1591,37 @@ func_run_hooks ()
# {
# $debug_cmd
#
+# args_changed=false
+#
# # Note that for efficiency, we parse as many options as we can
# # recognise in a loop before passing the remainder back to the
# # caller on the first unrecognised argument we encounter.
# while test $# -gt 0; do
# opt=$1; shift
# case $opt in
-# --silent|-s) opt_silent=: ;;
+# --silent|-s) opt_silent=:
+# args_changed=:
+# ;;
# # Separate non-argument short options:
# -s*) func_split_short_opt "$_G_opt"
# set dummy "$func_split_short_opt_name" \
# "-$func_split_short_opt_arg" ${1+"$@"}
# shift
+# args_changed=:
# ;;
-# *) set dummy "$_G_opt" "$*"; shift; break ;;
+# *) # Make sure the first unrecognised option "$_G_opt"
+# # is added back to "$@", we could need that later
+# # if $args_changed is true.
+# set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
# esac
# done
#
-# func_quote_for_eval ${1+"$@"}
-# my_silent_option_result=$func_quote_for_eval_result
+# if $args_changed; then
+# func_quote_for_eval ${1+"$@"}
+# my_silent_option_result=$func_quote_for_eval_result
+# fi
+#
+# $args_changed
# }
# func_add_hook func_parse_options my_silent_option
#
@@ -1611,16 +1633,32 @@ func_run_hooks ()
# $opt_silent && $opt_verbose && func_fatal_help "\
# '--silent' and '--verbose' options are mutually exclusive."
#
-# func_quote_for_eval ${1+"$@"}
-# my_option_validation_result=$func_quote_for_eval_result
+# false
# }
# func_add_hook func_validate_options my_option_validation
#
-# You'll alse need to manually amend $usage_message to reflect the extra
+# You'll also need to manually amend $usage_message to reflect the extra
# options you parse. It's preferable to append if you can, so that
# multiple option parsing hooks can be added safely.
+# func_options_finish [ARG]...
+# ----------------------------
+# Finishing the option parse loop (call 'func_options' hooks ATM).
+func_options_finish ()
+{
+ $debug_cmd
+
+ _G_func_options_finish_exit=false
+ if func_run_hooks func_options ${1+"$@"}; then
+ func_options_finish_result=$func_run_hooks_result
+ _G_func_options_finish_exit=:
+ fi
+
+ $_G_func_options_finish_exit
+}
+
+
# func_options [ARG]...
# ---------------------
# All the functions called inside func_options are hookable. See the
@@ -1630,17 +1668,28 @@ func_options ()
{
$debug_cmd
- func_options_prep ${1+"$@"}
- eval func_parse_options \
- ${func_options_prep_result+"$func_options_prep_result"}
- eval func_validate_options \
- ${func_parse_options_result+"$func_parse_options_result"}
+ _G_rc_options=false
- eval func_run_hooks func_options \
- ${func_validate_options_result+"$func_validate_options_result"}
+ for my_func in options_prep parse_options validate_options options_finish
+ do
+ if eval func_$my_func '${1+"$@"}'; then
+ eval _G_res_var='$'"func_${my_func}_result"
+ eval set dummy "$_G_res_var" ; shift
+ _G_rc_options=:
+ fi
+ done
+
+ # Save modified positional parameters for caller. As a top-level
+ # options-parser function we always need to set the 'func_options_result'
+ # variable (regardless the $_G_rc_options value).
+ if $_G_rc_options; then
+ func_options_result=$_G_res_var
+ else
+ func_quote_for_eval ${1+"$@"}
+ func_options_result=$func_quote_for_eval_result
+ fi
- # save modified positional parameters for caller
- func_options_result=$func_run_hooks_result
+ $_G_rc_options
}
@@ -1649,9 +1698,9 @@ func_options ()
# All initialisations required before starting the option parse loop.
# Note that when calling hook functions, we pass through the list of
# positional parameters. If a hook function modifies that list, and
-# needs to propogate that back to rest of this script, then the complete
+# needs to propagate that back to rest of this script, then the complete
# modified list must be put in 'func_run_hooks_result' before
-# returning.
+# returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned).
func_hookable func_options_prep
func_options_prep ()
{
@@ -1661,10 +1710,14 @@ func_options_prep ()
opt_verbose=false
opt_warning_types=
- func_run_hooks func_options_prep ${1+"$@"}
+ _G_rc_options_prep=false
+ if func_run_hooks func_options_prep ${1+"$@"}; then
+ _G_rc_options_prep=:
+ # save modified positional parameters for caller
+ func_options_prep_result=$func_run_hooks_result
+ fi
- # save modified positional parameters for caller
- func_options_prep_result=$func_run_hooks_result
+ $_G_rc_options_prep
}
@@ -1678,18 +1731,20 @@ func_parse_options ()
func_parse_options_result=
+ _G_rc_parse_options=false
# this just eases exit handling
while test $# -gt 0; do
# Defer to hook functions for initial option parsing, so they
# get priority in the event of reusing an option name.
- func_run_hooks func_parse_options ${1+"$@"}
-
- # Adjust func_parse_options positional parameters to match
- eval set dummy "$func_run_hooks_result"; shift
+ if func_run_hooks func_parse_options ${1+"$@"}; then
+ eval set dummy "$func_run_hooks_result"; shift
+ _G_rc_parse_options=:
+ fi
# Break out of the loop if we already parsed every option.
test $# -gt 0 || break
+ _G_match_parse_options=:
_G_opt=$1
shift
case $_G_opt in
@@ -1704,7 +1759,10 @@ func_parse_options ()
;;
--warnings|--warning|-W)
- test $# = 0 && func_missing_arg $_G_opt && break
+ if test $# = 0 && func_missing_arg $_G_opt; then
+ _G_rc_parse_options=:
+ break
+ fi
case " $warning_categories $1" in
*" $1 "*)
# trailing space prevents matching last $1 above
@@ -1757,15 +1815,25 @@ func_parse_options ()
shift
;;
- --) break ;;
+ --) _G_rc_parse_options=: ; break ;;
-*) func_fatal_help "unrecognised option: '$_G_opt'" ;;
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+ *) set dummy "$_G_opt" ${1+"$@"}; shift
+ _G_match_parse_options=false
+ break
+ ;;
esac
+
+ $_G_match_parse_options && _G_rc_parse_options=:
done
- # save modified positional parameters for caller
- func_quote_for_eval ${1+"$@"}
- func_parse_options_result=$func_quote_for_eval_result
+
+ if $_G_rc_parse_options; then
+ # save modified positional parameters for caller
+ func_quote_for_eval ${1+"$@"}
+ func_parse_options_result=$func_quote_for_eval_result
+ fi
+
+ $_G_rc_parse_options
}
@@ -1778,16 +1846,21 @@ func_validate_options ()
{
$debug_cmd
+ _G_rc_validate_options=false
+
# Display all warnings if -W was not given.
test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
- func_run_hooks func_validate_options ${1+"$@"}
+ if func_run_hooks func_validate_options ${1+"$@"}; then
+ # save modified positional parameters for caller
+ func_validate_options_result=$func_run_hooks_result
+ _G_rc_validate_options=:
+ fi
# Bail if the options were screwed!
$exit_cmd $EXIT_FAILURE
- # save modified positional parameters for caller
- func_validate_options_result=$func_run_hooks_result
+ $_G_rc_validate_options
}
@@ -2068,7 +2141,7 @@ include the following information:
compiler: $LTCC
compiler flags: $LTCFLAGS
linker: $LD (gnu? $with_gnu_ld)
- version: $progname (GNU libtool) 2.4.6
+ version: $progname $scriptversion Debian-2.4.6-9
automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
@@ -2270,6 +2343,8 @@ libtool_options_prep ()
nonopt=
preserve_args=
+ _G_rc_lt_options_prep=:
+
# Shorthand for --mode=foo, only valid as the first argument
case $1 in
clean|clea|cle|cl)
@@ -2293,11 +2368,18 @@ libtool_options_prep ()
uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
shift; set dummy --mode uninstall ${1+"$@"}; shift
;;
+ *)
+ _G_rc_lt_options_prep=false
+ ;;
esac
- # Pass back the list of options.
- func_quote_for_eval ${1+"$@"}
- libtool_options_prep_result=$func_quote_for_eval_result
+ if $_G_rc_lt_options_prep; then
+ # Pass back the list of options.
+ func_quote_for_eval ${1+"$@"}
+ libtool_options_prep_result=$func_quote_for_eval_result
+ fi
+
+ $_G_rc_lt_options_prep
}
func_add_hook func_options_prep libtool_options_prep
@@ -2309,9 +2391,12 @@ libtool_parse_options ()
{
$debug_cmd
+ _G_rc_lt_parse_options=false
+
# Perform our own loop to consume as many options as possible in
# each iteration.
while test $# -gt 0; do
+ _G_match_lt_parse_options=:
_G_opt=$1
shift
case $_G_opt in
@@ -2386,15 +2471,22 @@ libtool_parse_options ()
func_append preserve_args " $_G_opt"
;;
- # An option not handled by this hook function:
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+ # An option not handled by this hook function:
+ *) set dummy "$_G_opt" ${1+"$@"} ; shift
+ _G_match_lt_parse_options=false
+ break
+ ;;
esac
+ $_G_match_lt_parse_options && _G_rc_lt_parse_options=:
done
+ if $_G_rc_lt_parse_options; then
+ # save modified positional parameters for caller
+ func_quote_for_eval ${1+"$@"}
+ libtool_parse_options_result=$func_quote_for_eval_result
+ fi
- # save modified positional parameters for caller
- func_quote_for_eval ${1+"$@"}
- libtool_parse_options_result=$func_quote_for_eval_result
+ $_G_rc_lt_parse_options
}
func_add_hook func_parse_options libtool_parse_options
@@ -7275,10 +7367,11 @@ func_mode_link ()
# -specs=* GCC specs files
# -stdlib=* select c++ std lib with clang
# -fsanitize=* Clang/GCC memory and address sanitizer
+ # -fuse-ld=* Linker select flags for GCC
-64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
-t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
-O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
- -specs=*|-fsanitize=*)
+ -specs=*|-fsanitize=*|-fuse-ld=*)
func_quote_for_eval "$arg"
arg=$func_quote_for_eval_result
func_append compile_command " $arg"
diff --git a/pocketsphinx-5prealpha/m4/libtool.m4 b/pocketsphinx-5prealpha/m4/libtool.m4
index 10ab284..c81e669 100644
--- a/pocketsphinx-5prealpha/m4/libtool.m4
+++ b/pocketsphinx-5prealpha/m4/libtool.m4
@@ -728,7 +728,6 @@ _LT_CONFIG_SAVE_COMMANDS([
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
@@ -4064,7 +4063,8 @@ _LT_EOF
if AC_TRY_EVAL(ac_compile); then
# Now try to grab the symbols.
nlist=conftest.nm
- if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
+ $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&AS_MESSAGE_LOG_FD
+ if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&AS_MESSAGE_LOG_FD && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
mv -f "$nlist"T "$nlist"
@@ -6439,7 +6439,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# Commands to make compiler produce verbose output that lists
# what "hidden" libraries, object files and flags are used when
# linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
else
GXX=no
@@ -6814,7 +6814,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# explicitly linking system object files so we need to strip them
# from the output so that they don't get included in the library
# dependencies.
- output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+ output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
;;
*)
if test yes = "$GXX"; then
@@ -6879,7 +6879,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# explicitly linking system object files so we need to strip them
# from the output so that they don't get included in the library
# dependencies.
- output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+ output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
;;
*)
if test yes = "$GXX"; then
@@ -7218,7 +7218,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# Commands to make compiler produce verbose output that lists
# what "hidden" libraries, object files and flags are used when
# linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
else
# FIXME: insert proper C++ library support
@@ -7302,7 +7302,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# Commands to make compiler produce verbose output that lists
# what "hidden" libraries, object files and flags are used when
# linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
else
# g++ 2.7 appears to require '-G' NOT '-shared' on this
# platform.
@@ -7313,7 +7313,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# Commands to make compiler produce verbose output that lists
# what "hidden" libraries, object files and flags are used when
# linking a shared library.
- output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+ output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
fi
_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir'
diff --git a/pocketsphinx-5prealpha/missing b/pocketsphinx-5prealpha/missing
index f62bbae..625aeb1 100755
--- a/pocketsphinx-5prealpha/missing
+++ b/pocketsphinx-5prealpha/missing
@@ -1,9 +1,9 @@
#! /bin/sh
# Common wrapper for a few potentially missing GNU programs.
-scriptversion=2013-10-28.13; # UTC
+scriptversion=2018-03-07.03; # UTC
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
# Originally written by Fran,cois Pinard , 1996.
# This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@ scriptversion=2013-10-28.13; # UTC
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
+# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
@@ -101,9 +101,9 @@ else
exit $st
fi
-perl_URL=http://www.perl.org/
-flex_URL=http://flex.sourceforge.net/
-gnu_software_URL=http://www.gnu.org/software
+perl_URL=https://www.perl.org/
+flex_URL=https://github.com/westes/flex
+gnu_software_URL=https://www.gnu.org/software
program_details ()
{
@@ -207,9 +207,9 @@ give_advice "$1" | sed -e '1s/^/WARNING: /' \
exit $st
# Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
diff --git a/pocketsphinx-5prealpha/model/Makefile b/pocketsphinx-5prealpha/model/Makefile
index f6dcd26..00e5f93 100644
--- a/pocketsphinx-5prealpha/model/Makefile
+++ b/pocketsphinx-5prealpha/model/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# model/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -155,19 +155,19 @@ DATA = $(dist_enus_DATA) $(dist_enuslm_DATA)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -195,7 +195,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -203,7 +203,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -237,15 +237,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/model
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/model
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/model
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/model
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -274,7 +274,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -337,8 +337,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -404,7 +404,10 @@ ctags CTAGS:
cscope cscopelist:
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/model/Makefile.in b/pocketsphinx-5prealpha/model/Makefile.in
index 7d116f7..3669f12 100644
--- a/pocketsphinx-5prealpha/model/Makefile.in
+++ b/pocketsphinx-5prealpha/model/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -337,8 +337,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -404,7 +404,10 @@ ctags CTAGS:
cscope cscopelist:
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/pocketsphinx.pc b/pocketsphinx-5prealpha/pocketsphinx.pc
new file mode 100644
index 0000000..a8d7744
--- /dev/null
+++ b/pocketsphinx-5prealpha/pocketsphinx.pc
@@ -0,0 +1,16 @@
+prefix=/usr/local
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+libs= -lsphinxbase
+datadir=${prefix}/share/pocketsphinx
+modeldir=${prefix}/share/pocketsphinx/model
+
+Name: PocketSphinx
+Description: Lightweight speech recognition system
+Version: 5prealpha
+URL: http://cmusphinx.sourceforge.net/
+Requires: sphinxbase >= 5prealpha
+Libs: -L${libdir} -lpocketsphinx
+Libs.private: ${libs} -lm
+Cflags: -I${includedir} -I${includedir}/sphinxbase -I${includedir}/pocketsphinx
diff --git a/pocketsphinx-5prealpha/src/Makefile b/pocketsphinx-5prealpha/src/Makefile
index f0b2e82..ec6bdbd 100644
--- a/pocketsphinx-5prealpha/src/Makefile
+++ b/pocketsphinx-5prealpha/src/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -184,19 +184,19 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -224,7 +224,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -232,7 +232,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -266,15 +266,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/src
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/src
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -303,7 +303,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -353,8 +353,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -471,7 +471,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/src/Makefile.in b/pocketsphinx-5prealpha/src/Makefile.in
index 86539f8..6d49510 100644
--- a/pocketsphinx-5prealpha/src/Makefile.in
+++ b/pocketsphinx-5prealpha/src/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -353,8 +353,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -471,7 +471,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/.deps/gstpocketsphinx.Plo b/pocketsphinx-5prealpha/src/gst-plugin/.deps/gstpocketsphinx.Plo
index 9ce06a8..90c1abe 100644
--- a/pocketsphinx-5prealpha/src/gst-plugin/.deps/gstpocketsphinx.Plo
+++ b/pocketsphinx-5prealpha/src/gst-plugin/.deps/gstpocketsphinx.Plo
@@ -1 +1,774 @@
-# dummy
+gstpocketsphinx.lo: gstpocketsphinx.c /usr/include/stdc-predef.h \
+ ../../include/config.h /usr/include/string.h /usr/include/features.h \
+ /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/gnu/stubs.h \
+ /usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/string3.h \
+ /usr/include/gstreamer-1.0/gst/gst.h /usr/include/glib-2.0/glib.h \
+ /usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \
+ /usr/lib/arm-linux-gnueabihf/glib-2.0/include/glibconfig.h \
+ /usr/include/glib-2.0/glib/gmacros.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
+ /usr/include/arm-linux-gnueabihf/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
+ /usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/glib-2.0/glib/garray.h \
+ /usr/include/glib-2.0/glib/gasyncqueue.h \
+ /usr/include/glib-2.0/glib/gthread.h \
+ /usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
+ /usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigset.h \
+ /usr/include/arm-linux-gnueabihf/bits/signum.h \
+ /usr/include/arm-linux-gnueabihf/bits/siginfo.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigaction.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigcontext.h \
+ /usr/include/arm-linux-gnueabihf/asm/sigcontext.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigstack.h \
+ /usr/include/arm-linux-gnueabihf/sys/ucontext.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
+ /usr/include/arm-linux-gnueabihf/bits/sigthread.h \
+ /usr/include/glib-2.0/glib/gbase64.h \
+ /usr/include/glib-2.0/glib/gbitlock.h \
+ /usr/include/glib-2.0/glib/gbookmarkfile.h \
+ /usr/include/glib-2.0/glib/gbytes.h \
+ /usr/include/glib-2.0/glib/gcharset.h \
+ /usr/include/glib-2.0/glib/gchecksum.h \
+ /usr/include/glib-2.0/glib/gconvert.h \
+ /usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
+ /usr/include/glib-2.0/glib/gdatetime.h \
+ /usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \
+ /usr/include/dirent.h /usr/include/arm-linux-gnueabihf/bits/dirent.h \
+ /usr/include/glib-2.0/glib/genviron.h \
+ /usr/include/glib-2.0/glib/gfileutils.h \
+ /usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
+ /usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
+ /usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
+ /usr/include/glib-2.0/glib/gchecksum.h \
+ /usr/include/glib-2.0/glib/ghook.h \
+ /usr/include/glib-2.0/glib/ghostutils.h \
+ /usr/include/glib-2.0/glib/giochannel.h \
+ /usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
+ /usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
+ /usr/include/glib-2.0/glib/gunicode.h \
+ /usr/include/glib-2.0/glib/gkeyfile.h \
+ /usr/include/glib-2.0/glib/gmappedfile.h \
+ /usr/include/glib-2.0/glib/gmarkup.h \
+ /usr/include/glib-2.0/glib/gmessages.h \
+ /usr/include/glib-2.0/glib/goption.h \
+ /usr/include/glib-2.0/glib/gpattern.h \
+ /usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
+ /usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
+ /usr/include/glib-2.0/glib/gregex.h \
+ /usr/include/glib-2.0/glib/gscanner.h \
+ /usr/include/glib-2.0/glib/gsequence.h \
+ /usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
+ /usr/include/glib-2.0/glib/gspawn.h \
+ /usr/include/glib-2.0/glib/gstrfuncs.h \
+ /usr/include/glib-2.0/glib/gstringchunk.h \
+ /usr/include/glib-2.0/glib/gtestutils.h \
+ /usr/include/glib-2.0/glib/gthreadpool.h \
+ /usr/include/glib-2.0/glib/gtimer.h \
+ /usr/include/glib-2.0/glib/gtrashstack.h \
+ /usr/include/glib-2.0/glib/gtree.h \
+ /usr/include/glib-2.0/glib/gurifuncs.h \
+ /usr/include/glib-2.0/glib/gvarianttype.h \
+ /usr/include/glib-2.0/glib/gvariant.h \
+ /usr/include/glib-2.0/glib/gversion.h \
+ /usr/include/glib-2.0/glib/deprecated/gallocator.h \
+ /usr/include/glib-2.0/glib/deprecated/gcache.h \
+ /usr/include/glib-2.0/glib/deprecated/gcompletion.h \
+ /usr/include/glib-2.0/glib/deprecated/gmain.h \
+ /usr/include/glib-2.0/glib/deprecated/grel.h \
+ /usr/include/glib-2.0/glib/deprecated/gthread.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/sys/select.h \
+ /usr/include/arm-linux-gnueabihf/bits/select.h \
+ /usr/include/arm-linux-gnueabihf/bits/select2.h \
+ /usr/include/arm-linux-gnueabihf/sys/sysmacros.h /usr/include/pthread.h \
+ /usr/include/sched.h /usr/include/arm-linux-gnueabihf/bits/sched.h \
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /usr/include/glib-2.0/glib/glib-autocleanups.h \
+ /usr/include/gstreamer-1.0/gst/glib-compat.h \
+ /usr/include/gstreamer-1.0/gst/gstenumtypes.h \
+ /usr/include/glib-2.0/glib-object.h \
+ /usr/include/glib-2.0/gobject/gbinding.h \
+ /usr/include/glib-2.0/gobject/gobject.h \
+ /usr/include/glib-2.0/gobject/gtype.h \
+ /usr/include/glib-2.0/gobject/gvalue.h \
+ /usr/include/glib-2.0/gobject/gparam.h \
+ /usr/include/glib-2.0/gobject/gclosure.h \
+ /usr/include/glib-2.0/gobject/gsignal.h \
+ /usr/include/glib-2.0/gobject/gmarshal.h \
+ /usr/include/glib-2.0/gobject/gboxed.h \
+ /usr/include/glib-2.0/gobject/glib-types.h \
+ /usr/include/glib-2.0/gobject/genums.h \
+ /usr/include/glib-2.0/gobject/gparamspecs.h \
+ /usr/include/glib-2.0/gobject/gsourceclosure.h \
+ /usr/include/glib-2.0/gobject/gtypemodule.h \
+ /usr/include/glib-2.0/gobject/gtypeplugin.h \
+ /usr/include/glib-2.0/gobject/gvaluearray.h \
+ /usr/include/glib-2.0/gobject/gvaluetypes.h \
+ /usr/include/glib-2.0/gobject/gobject-autocleanups.h \
+ /usr/include/gstreamer-1.0/gst/gstversion.h \
+ /usr/include/gstreamer-1.0/gst/gstatomicqueue.h \
+ /usr/include/gstreamer-1.0/gst/gstbin.h \
+ /usr/include/gstreamer-1.0/gst/gstelement.h \
+ /usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include/gst/gstconfig.h \
+ /usr/include/gstreamer-1.0/gst/gstobject.h \
+ /usr/include/gstreamer-1.0/gst/gstcontrolbinding.h \
+ /usr/include/gstreamer-1.0/gst/gstcontrolsource.h \
+ /usr/include/gstreamer-1.0/gst/gstclock.h \
+ /usr/include/gstreamer-1.0/gst/gstpad.h \
+ /usr/include/gstreamer-1.0/gst/gstbuffer.h \
+ /usr/include/gstreamer-1.0/gst/gstminiobject.h \
+ /usr/include/gstreamer-1.0/gst/gstallocator.h \
+ /usr/include/gstreamer-1.0/gst/gstmemory.h \
+ /usr/include/gstreamer-1.0/gst/gstmeta.h \
+ /usr/include/gstreamer-1.0/gst/gstbufferlist.h \
+ /usr/include/gstreamer-1.0/gst/gstcaps.h \
+ /usr/include/gstreamer-1.0/gst/gststructure.h \
+ /usr/include/gstreamer-1.0/gst/gstdatetime.h \
+ /usr/include/gstreamer-1.0/gst/gstcapsfeatures.h \
+ /usr/include/gstreamer-1.0/gst/gstpadtemplate.h \
+ /usr/include/gstreamer-1.0/gst/gstevent.h \
+ /usr/include/gstreamer-1.0/gst/gstformat.h \
+ /usr/include/gstreamer-1.0/gst/gstiterator.h \
+ /usr/include/gstreamer-1.0/gst/gsttaglist.h \
+ /usr/include/gstreamer-1.0/gst/gstsample.h \
+ /usr/include/gstreamer-1.0/gst/gstsegment.h \
+ /usr/include/gstreamer-1.0/gst/gstmessage.h \
+ /usr/include/gstreamer-1.0/gst/gstquery.h \
+ /usr/include/gstreamer-1.0/gst/gsttoc.h \
+ /usr/include/gstreamer-1.0/gst/gstcontext.h \
+ /usr/include/gstreamer-1.0/gst/gstdevice.h \
+ /usr/include/gstreamer-1.0/gst/gsttask.h \
+ /usr/include/gstreamer-1.0/gst/gsttaskpool.h \
+ /usr/include/gstreamer-1.0/gst/gstbus.h \
+ /usr/include/gstreamer-1.0/gst/gstelementfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstplugin.h \
+ /usr/include/gstreamer-1.0/gst/gstmacros.h \
+ /usr/include/gstreamer-1.0/gst/gstpluginfeature.h \
+ /usr/include/gstreamer-1.0/gst/gsturi.h \
+ /usr/include/gstreamer-1.0/gst/gstminiobject.h \
+ /usr/include/gstreamer-1.0/gst/gstbufferpool.h \
+ /usr/include/gstreamer-1.0/gst/gstchildproxy.h \
+ /usr/include/gstreamer-1.0/gst/gstdebugutils.h \
+ /usr/include/gstreamer-1.0/gst/gstdevicemonitor.h \
+ /usr/include/gstreamer-1.0/gst/gstdeviceprovider.h \
+ /usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstelementmetadata.h \
+ /usr/include/gstreamer-1.0/gst/gsterror.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/gstreamer-1.0/gst/gstghostpad.h \
+ /usr/include/gstreamer-1.0/gst/gstinfo.h \
+ /usr/include/gstreamer-1.0/gst/gstparamspecs.h \
+ /usr/include/gstreamer-1.0/gst/gstvalue.h \
+ /usr/include/gstreamer-1.0/gst/gstpipeline.h \
+ /usr/include/gstreamer-1.0/gst/gstpoll.h \
+ /usr/include/gstreamer-1.0/gst/gstpreset.h \
+ /usr/include/gstreamer-1.0/gst/gstprotection.h \
+ /usr/include/gstreamer-1.0/gst/gstregistry.h \
+ /usr/include/gstreamer-1.0/gst/gstsystemclock.h \
+ /usr/include/gstreamer-1.0/gst/gsttagsetter.h \
+ /usr/include/gstreamer-1.0/gst/gsttocsetter.h \
+ /usr/include/gstreamer-1.0/gst/gsttracer.h \
+ /usr/include/gstreamer-1.0/gst/gsttracerfactory.h \
+ /usr/include/gstreamer-1.0/gst/gsttracerrecord.h \
+ /usr/include/gstreamer-1.0/gst/gsttypefind.h \
+ /usr/include/gstreamer-1.0/gst/gsttypefindfactory.h \
+ /usr/include/gstreamer-1.0/gst/gstutils.h \
+ /usr/include/gstreamer-1.0/gst/gstparse.h \
+ /usr/include/gstreamer-1.0/gst/gstcompat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
+ /usr/include/wchar.h /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
+ /usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/alloca.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ gstpocketsphinx.h ../../include/pocketsphinx.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ ../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
+ ../../include/ps_lattice.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ ../../include/ps_mllr.h ../../include/ps_search.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+
+/usr/include/stdc-predef.h:
+
+../../include/config.h:
+
+/usr/include/string.h:
+
+/usr/include/features.h:
+
+/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
+
+/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+
+/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
+
+/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+
+/usr/include/xlocale.h:
+
+/usr/include/arm-linux-gnueabihf/bits/string.h:
+
+/usr/include/arm-linux-gnueabihf/bits/string2.h:
+
+/usr/include/stdlib.h:
+
+/usr/include/arm-linux-gnueabihf/bits/string3.h:
+
+/usr/include/gstreamer-1.0/gst/gst.h:
+
+/usr/include/glib-2.0/glib.h:
+
+/usr/include/glib-2.0/glib/galloca.h:
+
+/usr/include/glib-2.0/glib/gtypes.h:
+
+/usr/lib/arm-linux-gnueabihf/glib-2.0/include/glibconfig.h:
+
+/usr/include/glib-2.0/glib/gmacros.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+
+/usr/include/limits.h:
+
+/usr/include/arm-linux-gnueabihf/bits/posix1_lim.h:
+
+/usr/include/arm-linux-gnueabihf/bits/local_lim.h:
+
+/usr/include/linux/limits.h:
+
+/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+
+/usr/include/glib-2.0/glib/gversionmacros.h:
+
+/usr/include/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+
+/usr/include/glib-2.0/glib/garray.h:
+
+/usr/include/glib-2.0/glib/gasyncqueue.h:
+
+/usr/include/glib-2.0/glib/gthread.h:
+
+/usr/include/glib-2.0/glib/gatomic.h:
+
+/usr/include/glib-2.0/glib/gerror.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+
+/usr/include/glib-2.0/glib/gquark.h:
+
+/usr/include/glib-2.0/glib/gutils.h:
+
+/usr/include/glib-2.0/glib/gbacktrace.h:
+
+/usr/include/signal.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+
+/usr/include/arm-linux-gnueabihf/bits/signum.h:
+
+/usr/include/arm-linux-gnueabihf/bits/siginfo.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigaction.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigcontext.h:
+
+/usr/include/arm-linux-gnueabihf/asm/sigcontext.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigstack.h:
+
+/usr/include/arm-linux-gnueabihf/sys/ucontext.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sigthread.h:
+
+/usr/include/glib-2.0/glib/gbase64.h:
+
+/usr/include/glib-2.0/glib/gbitlock.h:
+
+/usr/include/glib-2.0/glib/gbookmarkfile.h:
+
+/usr/include/glib-2.0/glib/gbytes.h:
+
+/usr/include/glib-2.0/glib/gcharset.h:
+
+/usr/include/glib-2.0/glib/gchecksum.h:
+
+/usr/include/glib-2.0/glib/gconvert.h:
+
+/usr/include/glib-2.0/glib/gdataset.h:
+
+/usr/include/glib-2.0/glib/gdate.h:
+
+/usr/include/glib-2.0/glib/gdatetime.h:
+
+/usr/include/glib-2.0/glib/gtimezone.h:
+
+/usr/include/glib-2.0/glib/gdir.h:
+
+/usr/include/dirent.h:
+
+/usr/include/arm-linux-gnueabihf/bits/dirent.h:
+
+/usr/include/glib-2.0/glib/genviron.h:
+
+/usr/include/glib-2.0/glib/gfileutils.h:
+
+/usr/include/glib-2.0/glib/ggettext.h:
+
+/usr/include/glib-2.0/glib/ghash.h:
+
+/usr/include/glib-2.0/glib/glist.h:
+
+/usr/include/glib-2.0/glib/gmem.h:
+
+/usr/include/glib-2.0/glib/gnode.h:
+
+/usr/include/glib-2.0/glib/ghmac.h:
+
+/usr/include/glib-2.0/glib/gchecksum.h:
+
+/usr/include/glib-2.0/glib/ghook.h:
+
+/usr/include/glib-2.0/glib/ghostutils.h:
+
+/usr/include/glib-2.0/glib/giochannel.h:
+
+/usr/include/glib-2.0/glib/gmain.h:
+
+/usr/include/glib-2.0/glib/gpoll.h:
+
+/usr/include/glib-2.0/glib/gslist.h:
+
+/usr/include/glib-2.0/glib/gstring.h:
+
+/usr/include/glib-2.0/glib/gunicode.h:
+
+/usr/include/glib-2.0/glib/gkeyfile.h:
+
+/usr/include/glib-2.0/glib/gmappedfile.h:
+
+/usr/include/glib-2.0/glib/gmarkup.h:
+
+/usr/include/glib-2.0/glib/gmessages.h:
+
+/usr/include/glib-2.0/glib/goption.h:
+
+/usr/include/glib-2.0/glib/gpattern.h:
+
+/usr/include/glib-2.0/glib/gprimes.h:
+
+/usr/include/glib-2.0/glib/gqsort.h:
+
+/usr/include/glib-2.0/glib/gqueue.h:
+
+/usr/include/glib-2.0/glib/grand.h:
+
+/usr/include/glib-2.0/glib/gregex.h:
+
+/usr/include/glib-2.0/glib/gscanner.h:
+
+/usr/include/glib-2.0/glib/gsequence.h:
+
+/usr/include/glib-2.0/glib/gshell.h:
+
+/usr/include/glib-2.0/glib/gslice.h:
+
+/usr/include/glib-2.0/glib/gspawn.h:
+
+/usr/include/glib-2.0/glib/gstrfuncs.h:
+
+/usr/include/glib-2.0/glib/gstringchunk.h:
+
+/usr/include/glib-2.0/glib/gtestutils.h:
+
+/usr/include/glib-2.0/glib/gthreadpool.h:
+
+/usr/include/glib-2.0/glib/gtimer.h:
+
+/usr/include/glib-2.0/glib/gtrashstack.h:
+
+/usr/include/glib-2.0/glib/gtree.h:
+
+/usr/include/glib-2.0/glib/gurifuncs.h:
+
+/usr/include/glib-2.0/glib/gvarianttype.h:
+
+/usr/include/glib-2.0/glib/gvariant.h:
+
+/usr/include/glib-2.0/glib/gversion.h:
+
+/usr/include/glib-2.0/glib/deprecated/gallocator.h:
+
+/usr/include/glib-2.0/glib/deprecated/gcache.h:
+
+/usr/include/glib-2.0/glib/deprecated/gcompletion.h:
+
+/usr/include/glib-2.0/glib/deprecated/gmain.h:
+
+/usr/include/glib-2.0/glib/deprecated/grel.h:
+
+/usr/include/glib-2.0/glib/deprecated/gthread.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/sys/select.h:
+
+/usr/include/arm-linux-gnueabihf/bits/select.h:
+
+/usr/include/arm-linux-gnueabihf/bits/select2.h:
+
+/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+
+/usr/include/pthread.h:
+
+/usr/include/sched.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sched.h:
+
+/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
+
+/usr/include/glib-2.0/glib/glib-autocleanups.h:
+
+/usr/include/gstreamer-1.0/gst/glib-compat.h:
+
+/usr/include/gstreamer-1.0/gst/gstenumtypes.h:
+
+/usr/include/glib-2.0/glib-object.h:
+
+/usr/include/glib-2.0/gobject/gbinding.h:
+
+/usr/include/glib-2.0/gobject/gobject.h:
+
+/usr/include/glib-2.0/gobject/gtype.h:
+
+/usr/include/glib-2.0/gobject/gvalue.h:
+
+/usr/include/glib-2.0/gobject/gparam.h:
+
+/usr/include/glib-2.0/gobject/gclosure.h:
+
+/usr/include/glib-2.0/gobject/gsignal.h:
+
+/usr/include/glib-2.0/gobject/gmarshal.h:
+
+/usr/include/glib-2.0/gobject/gboxed.h:
+
+/usr/include/glib-2.0/gobject/glib-types.h:
+
+/usr/include/glib-2.0/gobject/genums.h:
+
+/usr/include/glib-2.0/gobject/gparamspecs.h:
+
+/usr/include/glib-2.0/gobject/gsourceclosure.h:
+
+/usr/include/glib-2.0/gobject/gtypemodule.h:
+
+/usr/include/glib-2.0/gobject/gtypeplugin.h:
+
+/usr/include/glib-2.0/gobject/gvaluearray.h:
+
+/usr/include/glib-2.0/gobject/gvaluetypes.h:
+
+/usr/include/glib-2.0/gobject/gobject-autocleanups.h:
+
+/usr/include/gstreamer-1.0/gst/gstversion.h:
+
+/usr/include/gstreamer-1.0/gst/gstatomicqueue.h:
+
+/usr/include/gstreamer-1.0/gst/gstbin.h:
+
+/usr/include/gstreamer-1.0/gst/gstelement.h:
+
+/usr/lib/arm-linux-gnueabihf/gstreamer-1.0/include/gst/gstconfig.h:
+
+/usr/include/gstreamer-1.0/gst/gstobject.h:
+
+/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h:
+
+/usr/include/gstreamer-1.0/gst/gstcontrolsource.h:
+
+/usr/include/gstreamer-1.0/gst/gstclock.h:
+
+/usr/include/gstreamer-1.0/gst/gstpad.h:
+
+/usr/include/gstreamer-1.0/gst/gstbuffer.h:
+
+/usr/include/gstreamer-1.0/gst/gstminiobject.h:
+
+/usr/include/gstreamer-1.0/gst/gstallocator.h:
+
+/usr/include/gstreamer-1.0/gst/gstmemory.h:
+
+/usr/include/gstreamer-1.0/gst/gstmeta.h:
+
+/usr/include/gstreamer-1.0/gst/gstbufferlist.h:
+
+/usr/include/gstreamer-1.0/gst/gstcaps.h:
+
+/usr/include/gstreamer-1.0/gst/gststructure.h:
+
+/usr/include/gstreamer-1.0/gst/gstdatetime.h:
+
+/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h:
+
+/usr/include/gstreamer-1.0/gst/gstpadtemplate.h:
+
+/usr/include/gstreamer-1.0/gst/gstevent.h:
+
+/usr/include/gstreamer-1.0/gst/gstformat.h:
+
+/usr/include/gstreamer-1.0/gst/gstiterator.h:
+
+/usr/include/gstreamer-1.0/gst/gsttaglist.h:
+
+/usr/include/gstreamer-1.0/gst/gstsample.h:
+
+/usr/include/gstreamer-1.0/gst/gstsegment.h:
+
+/usr/include/gstreamer-1.0/gst/gstmessage.h:
+
+/usr/include/gstreamer-1.0/gst/gstquery.h:
+
+/usr/include/gstreamer-1.0/gst/gsttoc.h:
+
+/usr/include/gstreamer-1.0/gst/gstcontext.h:
+
+/usr/include/gstreamer-1.0/gst/gstdevice.h:
+
+/usr/include/gstreamer-1.0/gst/gsttask.h:
+
+/usr/include/gstreamer-1.0/gst/gsttaskpool.h:
+
+/usr/include/gstreamer-1.0/gst/gstbus.h:
+
+/usr/include/gstreamer-1.0/gst/gstelementfactory.h:
+
+/usr/include/gstreamer-1.0/gst/gstplugin.h:
+
+/usr/include/gstreamer-1.0/gst/gstmacros.h:
+
+/usr/include/gstreamer-1.0/gst/gstpluginfeature.h:
+
+/usr/include/gstreamer-1.0/gst/gsturi.h:
+
+/usr/include/gstreamer-1.0/gst/gstminiobject.h:
+
+/usr/include/gstreamer-1.0/gst/gstbufferpool.h:
+
+/usr/include/gstreamer-1.0/gst/gstchildproxy.h:
+
+/usr/include/gstreamer-1.0/gst/gstdebugutils.h:
+
+/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h:
+
+/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h:
+
+/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h:
+
+/usr/include/gstreamer-1.0/gst/gstelementmetadata.h:
+
+/usr/include/gstreamer-1.0/gst/gsterror.h:
+
+/usr/include/errno.h:
+
+/usr/include/arm-linux-gnueabihf/bits/errno.h:
+
+/usr/include/linux/errno.h:
+
+/usr/include/arm-linux-gnueabihf/asm/errno.h:
+
+/usr/include/asm-generic/errno.h:
+
+/usr/include/asm-generic/errno-base.h:
+
+/usr/include/gstreamer-1.0/gst/gstghostpad.h:
+
+/usr/include/gstreamer-1.0/gst/gstinfo.h:
+
+/usr/include/gstreamer-1.0/gst/gstparamspecs.h:
+
+/usr/include/gstreamer-1.0/gst/gstvalue.h:
+
+/usr/include/gstreamer-1.0/gst/gstpipeline.h:
+
+/usr/include/gstreamer-1.0/gst/gstpoll.h:
+
+/usr/include/gstreamer-1.0/gst/gstpreset.h:
+
+/usr/include/gstreamer-1.0/gst/gstprotection.h:
+
+/usr/include/gstreamer-1.0/gst/gstregistry.h:
+
+/usr/include/gstreamer-1.0/gst/gstsystemclock.h:
+
+/usr/include/gstreamer-1.0/gst/gsttagsetter.h:
+
+/usr/include/gstreamer-1.0/gst/gsttocsetter.h:
+
+/usr/include/gstreamer-1.0/gst/gsttracer.h:
+
+/usr/include/gstreamer-1.0/gst/gsttracerfactory.h:
+
+/usr/include/gstreamer-1.0/gst/gsttracerrecord.h:
+
+/usr/include/gstreamer-1.0/gst/gsttypefind.h:
+
+/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h:
+
+/usr/include/gstreamer-1.0/gst/gstutils.h:
+
+/usr/include/gstreamer-1.0/gst/gstparse.h:
+
+/usr/include/gstreamer-1.0/gst/gstcompat.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+
+/usr/include/stdio.h:
+
+/usr/include/libio.h:
+
+/usr/include/_G_config.h:
+
+/usr/include/wchar.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdio.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+
+/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
+
+/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+
+/usr/include/alloca.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+
+gstpocketsphinx.h:
+
+../../include/pocketsphinx.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+
+../../include/pocketsphinx_export.h:
+
+../../include/cmdln_macro.h:
+
+../../include/ps_lattice.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+
+../../include/ps_mllr.h:
+
+../../include/ps_search.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/setjmp.h:
+
+/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+
+/home/pi/speechRec/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.exp b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.exp
new file mode 100644
index 0000000..3ca0382
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.exp
@@ -0,0 +1,2 @@
+gst_plugin_desc
+gst_pocketsphinx_get_type
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.soT b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.soT
new file mode 100755
index 0000000..45e081f
Binary files /dev/null and b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.soT differ
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.ver b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.ver
new file mode 100644
index 0000000..e2130df
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/gst-plugin/.libs/libgstpocketsphinx.ver
@@ -0,0 +1,4 @@
+{ global:
+gst_plugin_desc;
+gst_pocketsphinx_get_type;
+local: *; };
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/Makefile b/pocketsphinx-5prealpha/src/gst-plugin/Makefile
index 3496e57..74dc20f 100644
--- a/pocketsphinx-5prealpha/src/gst-plugin/Makefile
+++ b/pocketsphinx-5prealpha/src/gst-plugin/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/gst-plugin/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -163,7 +163,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/gstpocketsphinx.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -212,19 +213,19 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -252,7 +253,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -260,7 +261,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -294,15 +295,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/src/gst-plugin
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/src/gst-plugin
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/gst-plugin
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/gst-plugin
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -331,7 +332,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -398,8 +399,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -455,7 +456,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/gstpocketsphinx.Plo
+include ./$(DEPDIR)/gstpocketsphinx.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -536,7 +543,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -609,7 +619,7 @@ clean-am: clean-generic clean-libtool clean-pluginLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/gstpocketsphinx.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -655,7 +665,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/gstpocketsphinx.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -676,20 +686,20 @@ uninstall-am: uninstall-pluginLTLIBRARIES
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-pluginLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-pluginLTLIBRARIES install-ps install-ps-am \
- install-strip installcheck installcheck-am installdirs \
- maintainer-clean maintainer-clean-generic mostlyclean \
- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
- pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
- uninstall-pluginLTLIBRARIES
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-pluginLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-pluginLTLIBRARIES install-ps \
+ install-ps-am install-strip installcheck installcheck-am \
+ installdirs maintainer-clean maintainer-clean-generic \
+ mostlyclean mostlyclean-compile mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
+ uninstall-am uninstall-pluginLTLIBRARIES
.PRECIOUS: Makefile
diff --git a/pocketsphinx-5prealpha/src/gst-plugin/Makefile.in b/pocketsphinx-5prealpha/src/gst-plugin/Makefile.in
index ab200de..9fb8567 100644
--- a/pocketsphinx-5prealpha/src/gst-plugin/Makefile.in
+++ b/pocketsphinx-5prealpha/src/gst-plugin/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -163,7 +163,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/gstpocketsphinx.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -398,8 +399,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -455,7 +456,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gstpocketsphinx.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gstpocketsphinx.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -536,7 +543,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -609,7 +619,7 @@ clean-am: clean-generic clean-libtool clean-pluginLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/gstpocketsphinx.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -655,7 +665,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/gstpocketsphinx.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -676,20 +686,20 @@ uninstall-am: uninstall-pluginLTLIBRARIES
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-pluginLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-pluginLTLIBRARIES install-ps install-ps-am \
- install-strip installcheck installcheck-am installdirs \
- maintainer-clean maintainer-clean-generic mostlyclean \
- mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
- pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
- uninstall-pluginLTLIBRARIES
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-pluginLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-pluginLTLIBRARIES install-ps \
+ install-ps-am install-strip installcheck installcheck-am \
+ installdirs maintainer-clean maintainer-clean-generic \
+ mostlyclean mostlyclean-compile mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
+ uninstall-am uninstall-pluginLTLIBRARIES
.PRECIOUS: Makefile
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/acmod.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/acmod.Plo
index 4f052c4..2d0058a 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/acmod.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/acmod.Plo
@@ -1,88 +1,100 @@
acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h /usr/include/string.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
../../include/cmdln_macro.h acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h ../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ ../../include/ps_mllr.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
s2_semi_mgau.h ms_gauden.h vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/ps_lattice.h \
../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h \
dict2pid.h ptm_mgau.h ms_mgau.h ms_senone.h
/usr/include/stdc-predef.h:
@@ -95,65 +107,71 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
/usr/include/string.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
-/usr/include/xlocale.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/math.h:
+/usr/include/arm-linux-gnueabihf/bits/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -161,46 +179,56 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -213,23 +241,23 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -241,33 +269,31 @@ acmod.lo: acmod.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
../../include/cmdln_macro.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
@@ -275,15 +301,15 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
s2_semi_mgau.h:
@@ -293,7 +319,7 @@ vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -301,13 +327,13 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/allphone_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/allphone_search.Plo
index 74c5457..676aa0a 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/allphone_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/allphone_search.Plo
@@ -1,108 +1,131 @@
allphone_search.lo: allphone_search.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
allphone_search.h blkarray_list.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -110,62 +133,72 @@ allphone_search.lo: allphone_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -178,39 +211,37 @@ allphone_search.lo: allphone_search.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -222,19 +253,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -244,19 +275,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
@@ -272,7 +303,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/bin_mdef.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/bin_mdef.Plo
index f61444c..1bcf9ea 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/bin_mdef.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/bin_mdef.Plo
@@ -1,84 +1,107 @@
bin_mdef.lo: bin_mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/case.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/case.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
../../include/pocketsphinx_export.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -86,79 +109,87 @@ bin_mdef.lo: bin_mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/case.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/case.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -174,14 +205,14 @@ bin_mdef.lo: bin_mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
../../include/pocketsphinx_export.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/blkarray_list.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/blkarray_list.Plo
index 29b9b93..2a0dd60 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/blkarray_list.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/blkarray_list.Plo
@@ -2,44 +2,58 @@ blkarray_list.lo: blkarray_list.c /usr/include/stdc-predef.h \
/usr/include/assert.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h blkarray_list.h
+ blkarray_list.h
/usr/include/stdc-predef.h:
@@ -51,31 +65,41 @@ blkarray_list.lo: blkarray_list.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -83,48 +107,60 @@ blkarray_list.lo: blkarray_list.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -137,14 +173,12 @@ blkarray_list.lo: blkarray_list.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
blkarray_list.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict.Plo
index ec0ced7..a0897ed 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict.Plo
@@ -1,100 +1,120 @@
dict.lo: dict.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
- /usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /usr/include/stdio.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /usr/include/arm-linux-gnueabihf/sys/stat.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/sys/stat.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
dict.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
/usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h s3types.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ bin_mdef.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
../../include/pocketsphinx_export.h mdef.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -102,71 +122,85 @@ dict.lo: dict.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/arm-linux-gnueabihf/sys/stat.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
dict.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
-
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -180,19 +214,17 @@ s3types.h:
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
../../include/pocketsphinx_export.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict2pid.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict2pid.Plo
index 3ab9a22..f6e7e06 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict2pid.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/dict2pid.Plo
@@ -1,107 +1,127 @@
dict2pid.lo: dict2pid.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h dict2pid.h \
- /usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h dict2pid.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ s3types.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h \
+ /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
dict.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
dict2pid.h:
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -109,73 +129,85 @@ dict2pid.h:
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -191,25 +223,25 @@ s3types.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
dict.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -221,4 +253,4 @@ hmm.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_history.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_history.Plo
index b5111fe..93f8278 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_history.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_history.Plo
@@ -2,75 +2,89 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
/usr/include/assert.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h fsg_search_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ fsg_search_internal.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h acmod.h bin_mdef.h \
mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
fsg_history.h blkarray_list.h fsg_lextree.h
/usr/include/stdc-predef.h:
@@ -83,31 +97,41 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -115,48 +139,60 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -169,51 +205,47 @@ fsg_history.lo: fsg_history.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
fsg_search_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -225,13 +257,13 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -241,9 +273,9 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
@@ -263,7 +295,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_lextree.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_lextree.Plo
index 50b7d89..763dad7 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_lextree.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_lextree.Plo
@@ -1,95 +1,118 @@
fsg_lextree.lo: fsg_lextree.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
fsg_lextree.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h mdef.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -97,75 +120,83 @@ fsg_lextree.lo: fsg_lextree.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -181,27 +212,27 @@ fsg_lextree.lo: fsg_lextree.c /usr/include/stdc-predef.h \
fsg_lextree.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -215,7 +246,7 @@ hmm.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
@@ -225,6 +256,6 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_search.Plo
index 46bff1e..84a26a0 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/fsg_search.Plo
@@ -1,76 +1,89 @@
fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
ps_lattice_internal.h fsg_search_internal.h fsg_history.h \
blkarray_list.h fsg_lextree.h
@@ -78,29 +91,39 @@ fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -108,62 +131,72 @@ fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -176,33 +209,31 @@ fsg_search.lo: fsg_search.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -214,19 +245,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -236,19 +267,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
@@ -264,7 +295,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/hmm.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/hmm.Plo
index 42c1fad..f81b901 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/hmm.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/hmm.Plo
@@ -1,62 +1,76 @@
hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h /usr/include/stdlib.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
../../include/pocketsphinx_export.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h
/usr/include/stdc-predef.h:
@@ -68,69 +82,85 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
/usr/include/stdlib.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
-
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -142,31 +172,35 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -174,8 +208,6 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -190,20 +222,20 @@ hmm.lo: hmm.c /usr/include/stdc-predef.h /usr/include/assert.h \
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
../../include/pocketsphinx_export.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_detections.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_detections.Plo
index 796c89b..0a87631 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_detections.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_detections.Plo
@@ -1,161 +1,198 @@
kws_detections.lo: kws_detections.c /usr/include/stdc-predef.h \
kws_detections.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /usr/include/stdlib.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/wchar.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /usr/include/stdio.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h /usr/include/assert.h \
dict2pid.h
/usr/include/stdc-predef.h:
kws_detections.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -163,15 +200,13 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
-
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -183,17 +218,17 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -203,41 +238,37 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -263,7 +294,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
/usr/include/assert.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_search.Plo
index 78c2278..689571e 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/kws_search.Plo
@@ -1,108 +1,131 @@
kws_search.lo: kws_search.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
kws_search.h kws_detections.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -110,62 +133,72 @@ kws_search.lo: kws_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -178,39 +211,37 @@ kws_search.lo: kws_search.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -222,19 +253,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -244,19 +275,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
@@ -272,7 +303,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/mdef.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/mdef.Plo
index 028bbf4..96c7f78 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/mdef.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/mdef.Plo
@@ -1,78 +1,102 @@
mdef.lo: mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -80,75 +104,83 @@ mdef.lo: mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
/usr/include/stdlib.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
-
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -164,6 +196,6 @@ mdef.lo: mdef.c /usr/include/stdc-predef.h /usr/include/stdio.h \
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_gauden.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_gauden.Plo
index 3ab54cd..3891d2c 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_gauden.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_gauden.Plo
@@ -2,85 +2,97 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/assert.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h /usr/include/string.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /usr/include/stdio.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h ms_gauden.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ ms_gauden.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h dict2pid.h
/usr/include/stdc-predef.h:
@@ -93,63 +105,69 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
/usr/include/string.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
-
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/math.h:
+/usr/include/arm-linux-gnueabihf/bits/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
/usr/include/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/types.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
-/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -157,56 +175,66 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -219,27 +247,25 @@ ms_gauden.lo: ms_gauden.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
ms_gauden.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -251,21 +277,21 @@ ms_gauden.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -275,19 +301,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_mgau.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_mgau.Plo
index 32b1da2..b807d29 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_mgau.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_mgau.Plo
@@ -1,111 +1,134 @@
ms_mgau.lo: ms_mgau.c /usr/include/stdc-predef.h ms_mgau.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
ms_gauden.h vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h \
/usr/include/assert.h dict2pid.h ms_senone.h
/usr/include/stdc-predef.h:
ms_mgau.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -113,25 +136,23 @@ ms_mgau.h:
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -143,73 +164,83 @@ ms_mgau.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
-/usr/include/stdlib.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -225,9 +256,9 @@ acmod.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
@@ -235,15 +266,15 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
ms_gauden.h:
@@ -251,7 +282,7 @@ vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -261,13 +292,13 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
/usr/include/assert.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_senone.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_senone.Plo
index bc1f448..0dfa41d 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_senone.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ms_senone.Plo
@@ -1,119 +1,138 @@
ms_senone.lo: ms_senone.c /usr/include/stdc-predef.h \
- /usr/include/string.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
ms_senone.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
ms_gauden.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -121,62 +140,76 @@ ms_senone.lo: ms_senone.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
ms_senone.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -189,29 +222,27 @@ ms_senone.h:
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
ms_gauden.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -223,19 +254,19 @@ ms_gauden.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -245,19 +276,19 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
@@ -273,6 +304,6 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search.Plo
index 6e732b2..0536cd2 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search.Plo
@@ -1,75 +1,88 @@
ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
- /usr/include/string.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
ps_lattice_internal.h ngram_search.h ngram_search_fwdtree.h \
ngram_search_fwdflat.h
@@ -77,99 +90,119 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -177,8 +210,6 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -193,15 +224,15 @@ ngram_search.lo: ngram_search.c /usr/include/stdc-predef.h \
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -213,19 +244,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -235,17 +266,17 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
acmod.h:
@@ -261,7 +292,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdflat.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdflat.Plo
index 07001ae..2336647 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdflat.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdflat.Plo
@@ -1,175 +1,208 @@
ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
- /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
ngram_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
ps_lattice_internal.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -177,8 +210,6 @@ ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -193,23 +224,23 @@ ngram_search_fwdflat.lo: ngram_search_fwdflat.c \
ngram_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -221,17 +252,17 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -245,9 +276,9 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
acmod.h:
@@ -263,7 +294,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdtree.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdtree.Plo
index d852734..d7b5983 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdtree.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ngram_search_fwdtree.Plo
@@ -1,175 +1,208 @@
ngram_search_fwdtree.lo: ngram_search_fwdtree.c \
- /usr/include/stdc-predef.h /usr/include/string.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
ngram_search_fwdtree.h ngram_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
phone_loop_search.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -177,8 +210,6 @@ ngram_search_fwdtree.lo: ngram_search_fwdtree.c \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -195,23 +226,23 @@ ngram_search_fwdtree.h:
ngram_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -223,17 +254,17 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -247,9 +278,9 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
acmod.h:
@@ -265,7 +296,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/phone_loop_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/phone_loop_search.Plo
index 8dd2589..98fffa9 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/phone_loop_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/phone_loop_search.Plo
@@ -1,107 +1,130 @@
phone_loop_search.lo: phone_loop_search.c /usr/include/stdc-predef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
phone_loop_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h acmod.h bin_mdef.h \
- mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
+ acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h /usr/include/assert.h \
dict2pid.h
/usr/include/stdc-predef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -109,48 +132,60 @@ phone_loop_search.lo: phone_loop_search.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -163,33 +198,33 @@ phone_loop_search.lo: phone_loop_search.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
phone_loop_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -201,17 +236,17 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -225,28 +260,24 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
acmod.h:
bin_mdef.h:
@@ -261,7 +292,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
/usr/include/assert.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/pocketsphinx.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/pocketsphinx.Plo
index ce43fc6..7072d4b 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/pocketsphinx.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/pocketsphinx.Plo
@@ -1,83 +1,96 @@
pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/jsgf.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/jsgf.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
../../include/cmdln_macro.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
ps_lattice_internal.h phone_loop_search.h kws_search.h kws_detections.h \
fsg_search_internal.h fsg_history.h blkarray_list.h fsg_lextree.h \
ngram_search.h ngram_search_fwdtree.h ngram_search_fwdflat.h \
@@ -87,29 +100,39 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -117,11 +140,9 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/stdlib.h:
@@ -129,40 +150,54 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -175,67 +210,63 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/jsgf.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/jsgf.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
../../include/cmdln_macro.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -247,9 +278,9 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx.h:
@@ -257,9 +288,9 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
@@ -267,7 +298,7 @@ pocketsphinx.lo: pocketsphinx.c /usr/include/stdc-predef.h \
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
acmod.h:
@@ -283,7 +314,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_alignment.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_alignment.Plo
index 8be959d..fbd1db8 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_alignment.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_alignment.Plo
@@ -1,140 +1,169 @@
ps_alignment.lo: ps_alignment.c /usr/include/stdc-predef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/stdlib.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- ps_alignment.h dict2pid.h /usr/include/stdio.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ ps_alignment.h dict2pid.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h s3types.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h /usr/include/assert.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
dict.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
/usr/include/stdc-predef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
ps_alignment.h:
@@ -142,13 +171,19 @@ dict2pid.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -156,31 +191,27 @@ dict2pid.h:
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
/usr/include/assert.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -196,25 +227,25 @@ s3types.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
dict.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -226,4 +257,4 @@ hmm.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_lattice.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_lattice.Plo
index 524f7f9..1422a16 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_lattice.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_lattice.Plo
@@ -2,87 +2,99 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/assert.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h /usr/include/string.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/wchar.h /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
acmod.h bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h dict2pid.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h dict2pid.h \
ps_lattice_internal.h ngram_search.h
/usr/include/stdc-predef.h:
@@ -95,117 +107,133 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
/usr/include/string.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
-/usr/include/xlocale.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/math.h:
+/usr/include/arm-linux-gnueabihf/bits/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
-/usr/include/arm-linux-gnueabihf/bits/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
-/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -213,8 +241,6 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -227,7 +253,7 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
@@ -235,15 +261,15 @@ ps_lattice.lo: ps_lattice.c /usr/include/stdc-predef.h \
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -255,19 +281,19 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -277,17 +303,17 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
acmod.h:
@@ -303,7 +329,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_mllr.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_mllr.Plo
index 2b2ca71..ae0c303 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_mllr.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ps_mllr.Plo
@@ -1,99 +1,122 @@
ps_mllr.lo: ps_mllr.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -101,9 +124,7 @@ ps_mllr.lo: ps_mllr.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/stdlib.h:
@@ -111,65 +132,77 @@ ps_mllr.lo: ps_mllr.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -181,25 +214,23 @@ acmod.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -215,9 +246,9 @@ acmod.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
@@ -225,12 +256,12 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ptm_mgau.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ptm_mgau.Plo
index ee83433..9ebc82d 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ptm_mgau.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/ptm_mgau.Plo
@@ -1,119 +1,141 @@
ptm_mgau.lo: ptm_mgau.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
tied_mgau_common.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
ptm_mgau.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
ms_gauden.h vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h \
dict2pid.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -121,63 +143,73 @@ ptm_mgau.lo: ptm_mgau.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -195,45 +227,39 @@ ptm_mgau.lo: ptm_mgau.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
-
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -249,27 +275,27 @@ ptm_mgau.lo: ptm_mgau.c /usr/include/stdc-predef.h /usr/include/stdio.h \
tied_mgau_common.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
ptm_mgau.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
../../include/pocketsphinx_export.h:
@@ -277,15 +303,15 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
ms_gauden.h:
@@ -293,7 +319,7 @@ vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -303,12 +329,12 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/s2_semi_mgau.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/s2_semi_mgau.Plo
index fe608c4..509bd9d 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/s2_semi_mgau.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/s2_semi_mgau.Plo
@@ -1,119 +1,141 @@
s2_semi_mgau.lo: s2_semi_mgau.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
s2_semi_mgau.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
../../include/ps_mllr.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
../../include/pocketsphinx_export.h bin_mdef.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
ms_gauden.h vector.h pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ dict.h s3types.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h \
dict2pid.h tied_mgau_common.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -121,63 +143,73 @@ s2_semi_mgau.lo: s2_semi_mgau.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -195,45 +227,39 @@ s2_semi_mgau.lo: s2_semi_mgau.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
-
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -249,25 +275,25 @@ s2_semi_mgau.lo: s2_semi_mgau.c /usr/include/stdc-predef.h \
s2_semi_mgau.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
../../include/ps_mllr.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
../../include/pocketsphinx_export.h:
@@ -275,15 +301,15 @@ bin_mdef.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
ms_gauden.h:
@@ -291,7 +317,7 @@ vector.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -301,13 +327,13 @@ pocketsphinx_internal.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
dict2pid.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/state_align_search.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/state_align_search.Plo
index da083cb..95c17dc 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/state_align_search.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/state_align_search.Plo
@@ -1,117 +1,140 @@
state_align_search.lo: state_align_search.c /usr/include/stdc-predef.h \
state_align_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
/usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../include/pocketsphinx.h ../../include/pocketsphinx_export.h \
../../include/cmdln_macro.h ../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
acmod.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
bin_mdef.h mdef.h tmat.h hmm.h dict.h s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h /usr/include/assert.h \
dict2pid.h ps_alignment.h
/usr/include/stdc-predef.h:
state_align_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -119,17 +142,15 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -141,15 +162,15 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
/usr/include/stdlib.h:
@@ -157,43 +178,57 @@ pocketsphinx_internal.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../include/pocketsphinx.h:
@@ -203,41 +238,37 @@ pocketsphinx_internal.h:
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
acmod.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -263,7 +294,7 @@ dict.h:
s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
/usr/include/assert.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/tmat.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/tmat.Plo
index d79046e..8d6bacd 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/tmat.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/tmat.Plo
@@ -1,116 +1,135 @@
tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /usr/include/stdio.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
tmat.h hmm.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
bin_mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/pocketsphinx_export.h mdef.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
vector.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
+/usr/include/strings.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -118,48 +137,62 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -172,27 +205,25 @@ tmat.lo: tmat.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bio.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
tmat.h:
hmm.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -204,18 +235,18 @@ hmm.h:
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
bin_mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/pocketsphinx_export.h:
mdef.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
vector.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/vector.Plo b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/vector.Plo
index f829c53..2c94f26 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/vector.Plo
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/.deps/vector.Plo
@@ -1,87 +1,109 @@
vector.lo: vector.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /usr/include/math.h /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
/usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
vector.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -89,57 +111,67 @@ vector.lo: vector.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -149,23 +181,19 @@ vector.lo: vector.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
-
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -179,20 +207,18 @@ vector.lo: vector.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
vector.h:
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3 b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3
new file mode 100755
index 0000000..f20cc0e
Binary files /dev/null and b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3 differ
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0 b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0
new file mode 100755
index 0000000..f20cc0e
Binary files /dev/null and b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0 differ
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0T b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0T
new file mode 100755
index 0000000..32e7507
Binary files /dev/null and b/pocketsphinx-5prealpha/src/libpocketsphinx/.libs/libpocketsphinx.so.3.0.0T differ
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile b/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile
index 10a752f..3db89bc 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/libpocketsphinx/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -166,7 +166,24 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/acmod.Plo \
+ ./$(DEPDIR)/allphone_search.Plo ./$(DEPDIR)/bin_mdef.Plo \
+ ./$(DEPDIR)/blkarray_list.Plo ./$(DEPDIR)/dict.Plo \
+ ./$(DEPDIR)/dict2pid.Plo ./$(DEPDIR)/fsg_history.Plo \
+ ./$(DEPDIR)/fsg_lextree.Plo ./$(DEPDIR)/fsg_search.Plo \
+ ./$(DEPDIR)/hmm.Plo ./$(DEPDIR)/kws_detections.Plo \
+ ./$(DEPDIR)/kws_search.Plo ./$(DEPDIR)/mdef.Plo \
+ ./$(DEPDIR)/ms_gauden.Plo ./$(DEPDIR)/ms_mgau.Plo \
+ ./$(DEPDIR)/ms_senone.Plo ./$(DEPDIR)/ngram_search.Plo \
+ ./$(DEPDIR)/ngram_search_fwdflat.Plo \
+ ./$(DEPDIR)/ngram_search_fwdtree.Plo \
+ ./$(DEPDIR)/phone_loop_search.Plo ./$(DEPDIR)/pocketsphinx.Plo \
+ ./$(DEPDIR)/ps_alignment.Plo ./$(DEPDIR)/ps_lattice.Plo \
+ ./$(DEPDIR)/ps_mllr.Plo ./$(DEPDIR)/ptm_mgau.Plo \
+ ./$(DEPDIR)/s2_semi_mgau.Plo \
+ ./$(DEPDIR)/state_align_search.Plo ./$(DEPDIR)/tmat.Plo \
+ ./$(DEPDIR)/vector.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -215,19 +232,19 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -255,7 +272,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -263,7 +280,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -297,15 +314,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/src/libpocketsphinx
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/src/libpocketsphinx
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -334,7 +351,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -453,8 +470,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -510,35 +527,41 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/acmod.Plo
-include ./$(DEPDIR)/allphone_search.Plo
-include ./$(DEPDIR)/bin_mdef.Plo
-include ./$(DEPDIR)/blkarray_list.Plo
-include ./$(DEPDIR)/dict.Plo
-include ./$(DEPDIR)/dict2pid.Plo
-include ./$(DEPDIR)/fsg_history.Plo
-include ./$(DEPDIR)/fsg_lextree.Plo
-include ./$(DEPDIR)/fsg_search.Plo
-include ./$(DEPDIR)/hmm.Plo
-include ./$(DEPDIR)/kws_detections.Plo
-include ./$(DEPDIR)/kws_search.Plo
-include ./$(DEPDIR)/mdef.Plo
-include ./$(DEPDIR)/ms_gauden.Plo
-include ./$(DEPDIR)/ms_mgau.Plo
-include ./$(DEPDIR)/ms_senone.Plo
-include ./$(DEPDIR)/ngram_search.Plo
-include ./$(DEPDIR)/ngram_search_fwdflat.Plo
-include ./$(DEPDIR)/ngram_search_fwdtree.Plo
-include ./$(DEPDIR)/phone_loop_search.Plo
-include ./$(DEPDIR)/pocketsphinx.Plo
-include ./$(DEPDIR)/ps_alignment.Plo
-include ./$(DEPDIR)/ps_lattice.Plo
-include ./$(DEPDIR)/ps_mllr.Plo
-include ./$(DEPDIR)/ptm_mgau.Plo
-include ./$(DEPDIR)/s2_semi_mgau.Plo
-include ./$(DEPDIR)/state_align_search.Plo
-include ./$(DEPDIR)/tmat.Plo
-include ./$(DEPDIR)/vector.Plo
+include ./$(DEPDIR)/acmod.Plo # am--include-marker
+include ./$(DEPDIR)/allphone_search.Plo # am--include-marker
+include ./$(DEPDIR)/bin_mdef.Plo # am--include-marker
+include ./$(DEPDIR)/blkarray_list.Plo # am--include-marker
+include ./$(DEPDIR)/dict.Plo # am--include-marker
+include ./$(DEPDIR)/dict2pid.Plo # am--include-marker
+include ./$(DEPDIR)/fsg_history.Plo # am--include-marker
+include ./$(DEPDIR)/fsg_lextree.Plo # am--include-marker
+include ./$(DEPDIR)/fsg_search.Plo # am--include-marker
+include ./$(DEPDIR)/hmm.Plo # am--include-marker
+include ./$(DEPDIR)/kws_detections.Plo # am--include-marker
+include ./$(DEPDIR)/kws_search.Plo # am--include-marker
+include ./$(DEPDIR)/mdef.Plo # am--include-marker
+include ./$(DEPDIR)/ms_gauden.Plo # am--include-marker
+include ./$(DEPDIR)/ms_mgau.Plo # am--include-marker
+include ./$(DEPDIR)/ms_senone.Plo # am--include-marker
+include ./$(DEPDIR)/ngram_search.Plo # am--include-marker
+include ./$(DEPDIR)/ngram_search_fwdflat.Plo # am--include-marker
+include ./$(DEPDIR)/ngram_search_fwdtree.Plo # am--include-marker
+include ./$(DEPDIR)/phone_loop_search.Plo # am--include-marker
+include ./$(DEPDIR)/pocketsphinx.Plo # am--include-marker
+include ./$(DEPDIR)/ps_alignment.Plo # am--include-marker
+include ./$(DEPDIR)/ps_lattice.Plo # am--include-marker
+include ./$(DEPDIR)/ps_mllr.Plo # am--include-marker
+include ./$(DEPDIR)/ptm_mgau.Plo # am--include-marker
+include ./$(DEPDIR)/s2_semi_mgau.Plo # am--include-marker
+include ./$(DEPDIR)/state_align_search.Plo # am--include-marker
+include ./$(DEPDIR)/tmat.Plo # am--include-marker
+include ./$(DEPDIR)/vector.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -619,7 +642,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -692,7 +718,35 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/acmod.Plo
+ -rm -f ./$(DEPDIR)/allphone_search.Plo
+ -rm -f ./$(DEPDIR)/bin_mdef.Plo
+ -rm -f ./$(DEPDIR)/blkarray_list.Plo
+ -rm -f ./$(DEPDIR)/dict.Plo
+ -rm -f ./$(DEPDIR)/dict2pid.Plo
+ -rm -f ./$(DEPDIR)/fsg_history.Plo
+ -rm -f ./$(DEPDIR)/fsg_lextree.Plo
+ -rm -f ./$(DEPDIR)/fsg_search.Plo
+ -rm -f ./$(DEPDIR)/hmm.Plo
+ -rm -f ./$(DEPDIR)/kws_detections.Plo
+ -rm -f ./$(DEPDIR)/kws_search.Plo
+ -rm -f ./$(DEPDIR)/mdef.Plo
+ -rm -f ./$(DEPDIR)/ms_gauden.Plo
+ -rm -f ./$(DEPDIR)/ms_mgau.Plo
+ -rm -f ./$(DEPDIR)/ms_senone.Plo
+ -rm -f ./$(DEPDIR)/ngram_search.Plo
+ -rm -f ./$(DEPDIR)/ngram_search_fwdflat.Plo
+ -rm -f ./$(DEPDIR)/ngram_search_fwdtree.Plo
+ -rm -f ./$(DEPDIR)/phone_loop_search.Plo
+ -rm -f ./$(DEPDIR)/pocketsphinx.Plo
+ -rm -f ./$(DEPDIR)/ps_alignment.Plo
+ -rm -f ./$(DEPDIR)/ps_lattice.Plo
+ -rm -f ./$(DEPDIR)/ps_mllr.Plo
+ -rm -f ./$(DEPDIR)/ptm_mgau.Plo
+ -rm -f ./$(DEPDIR)/s2_semi_mgau.Plo
+ -rm -f ./$(DEPDIR)/state_align_search.Plo
+ -rm -f ./$(DEPDIR)/tmat.Plo
+ -rm -f ./$(DEPDIR)/vector.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -738,7 +792,35 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/acmod.Plo
+ -rm -f ./$(DEPDIR)/allphone_search.Plo
+ -rm -f ./$(DEPDIR)/bin_mdef.Plo
+ -rm -f ./$(DEPDIR)/blkarray_list.Plo
+ -rm -f ./$(DEPDIR)/dict.Plo
+ -rm -f ./$(DEPDIR)/dict2pid.Plo
+ -rm -f ./$(DEPDIR)/fsg_history.Plo
+ -rm -f ./$(DEPDIR)/fsg_lextree.Plo
+ -rm -f ./$(DEPDIR)/fsg_search.Plo
+ -rm -f ./$(DEPDIR)/hmm.Plo
+ -rm -f ./$(DEPDIR)/kws_detections.Plo
+ -rm -f ./$(DEPDIR)/kws_search.Plo
+ -rm -f ./$(DEPDIR)/mdef.Plo
+ -rm -f ./$(DEPDIR)/ms_gauden.Plo
+ -rm -f ./$(DEPDIR)/ms_mgau.Plo
+ -rm -f ./$(DEPDIR)/ms_senone.Plo
+ -rm -f ./$(DEPDIR)/ngram_search.Plo
+ -rm -f ./$(DEPDIR)/ngram_search_fwdflat.Plo
+ -rm -f ./$(DEPDIR)/ngram_search_fwdtree.Plo
+ -rm -f ./$(DEPDIR)/phone_loop_search.Plo
+ -rm -f ./$(DEPDIR)/pocketsphinx.Plo
+ -rm -f ./$(DEPDIR)/ps_alignment.Plo
+ -rm -f ./$(DEPDIR)/ps_lattice.Plo
+ -rm -f ./$(DEPDIR)/ps_mllr.Plo
+ -rm -f ./$(DEPDIR)/ptm_mgau.Plo
+ -rm -f ./$(DEPDIR)/s2_semi_mgau.Plo
+ -rm -f ./$(DEPDIR)/state_align_search.Plo
+ -rm -f ./$(DEPDIR)/tmat.Plo
+ -rm -f ./$(DEPDIR)/vector.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -759,9 +841,9 @@ uninstall-am: uninstall-libLTLIBRARIES
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
+ ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
html-am info info-am install install-am install-data \
install-data-am install-dvi install-dvi-am install-exec \
diff --git a/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile.in b/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile.in
index ae3ebe8..e40dfc5 100644
--- a/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile.in
+++ b/pocketsphinx-5prealpha/src/libpocketsphinx/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -166,7 +166,24 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/acmod.Plo \
+ ./$(DEPDIR)/allphone_search.Plo ./$(DEPDIR)/bin_mdef.Plo \
+ ./$(DEPDIR)/blkarray_list.Plo ./$(DEPDIR)/dict.Plo \
+ ./$(DEPDIR)/dict2pid.Plo ./$(DEPDIR)/fsg_history.Plo \
+ ./$(DEPDIR)/fsg_lextree.Plo ./$(DEPDIR)/fsg_search.Plo \
+ ./$(DEPDIR)/hmm.Plo ./$(DEPDIR)/kws_detections.Plo \
+ ./$(DEPDIR)/kws_search.Plo ./$(DEPDIR)/mdef.Plo \
+ ./$(DEPDIR)/ms_gauden.Plo ./$(DEPDIR)/ms_mgau.Plo \
+ ./$(DEPDIR)/ms_senone.Plo ./$(DEPDIR)/ngram_search.Plo \
+ ./$(DEPDIR)/ngram_search_fwdflat.Plo \
+ ./$(DEPDIR)/ngram_search_fwdtree.Plo \
+ ./$(DEPDIR)/phone_loop_search.Plo ./$(DEPDIR)/pocketsphinx.Plo \
+ ./$(DEPDIR)/ps_alignment.Plo ./$(DEPDIR)/ps_lattice.Plo \
+ ./$(DEPDIR)/ps_mllr.Plo ./$(DEPDIR)/ptm_mgau.Plo \
+ ./$(DEPDIR)/s2_semi_mgau.Plo \
+ ./$(DEPDIR)/state_align_search.Plo ./$(DEPDIR)/tmat.Plo \
+ ./$(DEPDIR)/vector.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -453,8 +470,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -510,35 +527,41 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acmod.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/allphone_search.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bin_mdef.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blkarray_list.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dict.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dict2pid.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsg_history.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsg_lextree.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsg_search.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hmm.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/kws_detections.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/kws_search.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mdef.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ms_gauden.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ms_mgau.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ms_senone.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_search.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_search_fwdflat.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_search_fwdtree.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/phone_loop_search.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pocketsphinx.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ps_alignment.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ps_lattice.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ps_mllr.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptm_mgau.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s2_semi_mgau.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/state_align_search.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tmat.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vector.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acmod.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/allphone_search.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bin_mdef.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blkarray_list.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dict.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dict2pid.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsg_history.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsg_lextree.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsg_search.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hmm.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/kws_detections.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/kws_search.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mdef.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ms_gauden.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ms_mgau.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ms_senone.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_search.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_search_fwdflat.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_search_fwdtree.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/phone_loop_search.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pocketsphinx.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ps_alignment.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ps_lattice.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ps_mllr.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptm_mgau.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/s2_semi_mgau.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/state_align_search.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tmat.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vector.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -619,7 +642,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -692,7 +718,35 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/acmod.Plo
+ -rm -f ./$(DEPDIR)/allphone_search.Plo
+ -rm -f ./$(DEPDIR)/bin_mdef.Plo
+ -rm -f ./$(DEPDIR)/blkarray_list.Plo
+ -rm -f ./$(DEPDIR)/dict.Plo
+ -rm -f ./$(DEPDIR)/dict2pid.Plo
+ -rm -f ./$(DEPDIR)/fsg_history.Plo
+ -rm -f ./$(DEPDIR)/fsg_lextree.Plo
+ -rm -f ./$(DEPDIR)/fsg_search.Plo
+ -rm -f ./$(DEPDIR)/hmm.Plo
+ -rm -f ./$(DEPDIR)/kws_detections.Plo
+ -rm -f ./$(DEPDIR)/kws_search.Plo
+ -rm -f ./$(DEPDIR)/mdef.Plo
+ -rm -f ./$(DEPDIR)/ms_gauden.Plo
+ -rm -f ./$(DEPDIR)/ms_mgau.Plo
+ -rm -f ./$(DEPDIR)/ms_senone.Plo
+ -rm -f ./$(DEPDIR)/ngram_search.Plo
+ -rm -f ./$(DEPDIR)/ngram_search_fwdflat.Plo
+ -rm -f ./$(DEPDIR)/ngram_search_fwdtree.Plo
+ -rm -f ./$(DEPDIR)/phone_loop_search.Plo
+ -rm -f ./$(DEPDIR)/pocketsphinx.Plo
+ -rm -f ./$(DEPDIR)/ps_alignment.Plo
+ -rm -f ./$(DEPDIR)/ps_lattice.Plo
+ -rm -f ./$(DEPDIR)/ps_mllr.Plo
+ -rm -f ./$(DEPDIR)/ptm_mgau.Plo
+ -rm -f ./$(DEPDIR)/s2_semi_mgau.Plo
+ -rm -f ./$(DEPDIR)/state_align_search.Plo
+ -rm -f ./$(DEPDIR)/tmat.Plo
+ -rm -f ./$(DEPDIR)/vector.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -738,7 +792,35 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/acmod.Plo
+ -rm -f ./$(DEPDIR)/allphone_search.Plo
+ -rm -f ./$(DEPDIR)/bin_mdef.Plo
+ -rm -f ./$(DEPDIR)/blkarray_list.Plo
+ -rm -f ./$(DEPDIR)/dict.Plo
+ -rm -f ./$(DEPDIR)/dict2pid.Plo
+ -rm -f ./$(DEPDIR)/fsg_history.Plo
+ -rm -f ./$(DEPDIR)/fsg_lextree.Plo
+ -rm -f ./$(DEPDIR)/fsg_search.Plo
+ -rm -f ./$(DEPDIR)/hmm.Plo
+ -rm -f ./$(DEPDIR)/kws_detections.Plo
+ -rm -f ./$(DEPDIR)/kws_search.Plo
+ -rm -f ./$(DEPDIR)/mdef.Plo
+ -rm -f ./$(DEPDIR)/ms_gauden.Plo
+ -rm -f ./$(DEPDIR)/ms_mgau.Plo
+ -rm -f ./$(DEPDIR)/ms_senone.Plo
+ -rm -f ./$(DEPDIR)/ngram_search.Plo
+ -rm -f ./$(DEPDIR)/ngram_search_fwdflat.Plo
+ -rm -f ./$(DEPDIR)/ngram_search_fwdtree.Plo
+ -rm -f ./$(DEPDIR)/phone_loop_search.Plo
+ -rm -f ./$(DEPDIR)/pocketsphinx.Plo
+ -rm -f ./$(DEPDIR)/ps_alignment.Plo
+ -rm -f ./$(DEPDIR)/ps_lattice.Plo
+ -rm -f ./$(DEPDIR)/ps_mllr.Plo
+ -rm -f ./$(DEPDIR)/ptm_mgau.Plo
+ -rm -f ./$(DEPDIR)/s2_semi_mgau.Plo
+ -rm -f ./$(DEPDIR)/state_align_search.Plo
+ -rm -f ./$(DEPDIR)/tmat.Plo
+ -rm -f ./$(DEPDIR)/vector.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -759,9 +841,9 @@ uninstall-am: uninstall-libLTLIBRARIES
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
+ ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
html-am info info-am install install-am install-data \
install-data-am install-dvi install-dvi-am install-exec \
diff --git a/pocketsphinx-5prealpha/src/programs/.deps/batch.Po b/pocketsphinx-5prealpha/src/programs/.deps/batch.Po
index 0b83380..4c5336b 100644
--- a/pocketsphinx-5prealpha/src/programs/.deps/batch.Po
+++ b/pocketsphinx-5prealpha/src/programs/.deps/batch.Po
@@ -1,114 +1,137 @@
batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
- /usr/include/arm-linux-gnueabihf/sys/stat.h /usr/include/time.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h \
+ /usr/include/arm-linux-gnueabihf/sys/stat.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
/usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
/usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h \
../../include/pocketsphinx.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
../../src/libpocketsphinx/pocketsphinx_internal.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h \
../../src/libpocketsphinx/acmod.h ../../src/libpocketsphinx/bin_mdef.h \
../../src/libpocketsphinx/mdef.h ../../src/libpocketsphinx/tmat.h \
../../src/libpocketsphinx/hmm.h ../../src/libpocketsphinx/dict.h \
../../src/libpocketsphinx/s3types.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h /usr/include/assert.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h /usr/include/assert.h \
../../src/libpocketsphinx/dict2pid.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -116,23 +139,23 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/pio.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
/usr/include/stdlib.h:
@@ -140,38 +163,50 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
-
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -184,25 +219,25 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/strfuncs.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/filename.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/byteorder.h:
../../include/pocketsphinx.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -214,11 +249,11 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx_export.h:
@@ -226,45 +261,41 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
../../src/libpocketsphinx/pocketsphinx_internal.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/profile.h:
../../src/libpocketsphinx/acmod.h:
@@ -280,7 +311,7 @@ batch.o: batch.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../src/libpocketsphinx/s3types.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
/usr/include/assert.h:
diff --git a/pocketsphinx-5prealpha/src/programs/.deps/continuous.Po b/pocketsphinx-5prealpha/src/programs/.deps/continuous.Po
index 5337f3d..bd1e89e 100644
--- a/pocketsphinx-5prealpha/src/programs/.deps/continuous.Po
+++ b/pocketsphinx-5prealpha/src/programs/.deps/continuous.Po
@@ -1,101 +1,124 @@
continuous.o: continuous.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h /usr/include/time.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
/usr/include/arm-linux-gnueabihf/sys/types.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ad.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ad.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
../../include/pocketsphinx.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -103,19 +126,13 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -123,33 +140,51 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
+
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/err.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
-/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
/usr/include/alloca.h:
@@ -157,8 +192,6 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -171,27 +204,27 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ad.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ad.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
../../include/pocketsphinx.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -203,11 +236,11 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx_export.h:
@@ -215,28 +248,26 @@ continuous.o: continuous.c /usr/include/stdc-predef.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
diff --git a/pocketsphinx-5prealpha/src/programs/.deps/mdef_convert.Po b/pocketsphinx-5prealpha/src/programs/.deps/mdef_convert.Po
index ca6812d..92e7f22 100644
--- a/pocketsphinx-5prealpha/src/programs/.deps/mdef_convert.Po
+++ b/pocketsphinx-5prealpha/src/programs/.deps/mdef_convert.Po
@@ -1,97 +1,119 @@
mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../include/pocketsphinx.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../include/pocketsphinx.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
../../src/libpocketsphinx/bin_mdef.h ../../src/libpocketsphinx/mdef.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -99,39 +121,33 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../include/pocketsphinx.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -143,11 +159,11 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx_export.h:
@@ -155,69 +171,83 @@ mdef_convert.o: mdef_convert.c /usr/include/stdc-predef.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
../../src/libpocketsphinx/bin_mdef.h:
diff --git a/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_batch b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_batch
new file mode 100755
index 0000000..a718943
Binary files /dev/null and b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_batch differ
diff --git a/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_continuous b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_continuous
new file mode 100755
index 0000000..ce7d41e
Binary files /dev/null and b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_continuous differ
diff --git a/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_mdef_convert b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_mdef_convert
new file mode 100755
index 0000000..2026c51
Binary files /dev/null and b/pocketsphinx-5prealpha/src/programs/.libs/pocketsphinx_mdef_convert differ
diff --git a/pocketsphinx-5prealpha/src/programs/Makefile b/pocketsphinx-5prealpha/src/programs/Makefile
index 6d6a830..2821a05 100644
--- a/pocketsphinx-5prealpha/src/programs/Makefile
+++ b/pocketsphinx-5prealpha/src/programs/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/programs/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -140,7 +140,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/batch.Po ./$(DEPDIR)/continuous.Po \
+ ./$(DEPDIR)/mdef_convert.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -192,19 +194,19 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -232,7 +234,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -240,7 +242,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -274,15 +276,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/src/programs
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/src/programs
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/programs
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/programs
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -311,7 +313,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -374,8 +376,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -454,9 +456,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/batch.Po
-include ./$(DEPDIR)/continuous.Po
-include ./$(DEPDIR)/mdef_convert.Po
+include ./$(DEPDIR)/batch.Po # am--include-marker
+include ./$(DEPDIR)/continuous.Po # am--include-marker
+include ./$(DEPDIR)/mdef_convert.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -537,7 +545,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -609,7 +620,9 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/batch.Po
+ -rm -f ./$(DEPDIR)/continuous.Po
+ -rm -f ./$(DEPDIR)/mdef_convert.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -655,7 +668,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/batch.Po
+ -rm -f ./$(DEPDIR)/continuous.Po
+ -rm -f ./$(DEPDIR)/mdef_convert.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -676,7 +691,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/pocketsphinx-5prealpha/src/programs/Makefile.in b/pocketsphinx-5prealpha/src/programs/Makefile.in
index ff1408b..514317f 100644
--- a/pocketsphinx-5prealpha/src/programs/Makefile.in
+++ b/pocketsphinx-5prealpha/src/programs/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -140,7 +140,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/batch.Po ./$(DEPDIR)/continuous.Po \
+ ./$(DEPDIR)/mdef_convert.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -374,8 +376,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -454,9 +456,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/batch.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/continuous.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mdef_convert.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/batch.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/continuous.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mdef_convert.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -537,7 +545,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -609,7 +620,9 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/batch.Po
+ -rm -f ./$(DEPDIR)/continuous.Po
+ -rm -f ./$(DEPDIR)/mdef_convert.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -655,7 +668,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/batch.Po
+ -rm -f ./$(DEPDIR)/continuous.Po
+ -rm -f ./$(DEPDIR)/mdef_convert.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -676,7 +691,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/pocketsphinx-5prealpha/src/programs/pocketsphinx_batch b/pocketsphinx-5prealpha/src/programs/pocketsphinx_batch
new file mode 100755
index 0000000..ecf5baa
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/programs/pocketsphinx_batch
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# pocketsphinx_batch - temporary wrapper script for .libs/pocketsphinx_batch
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The pocketsphinx_batch program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libpocketsphinx/libpocketsphinx.la /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "pocketsphinx_batch:pocketsphinx_batch:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "pocketsphinx_batch:pocketsphinx_batch:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "pocketsphinx_batch:pocketsphinx_batch:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='pocketsphinx_batch'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx/.libs:/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/pocketsphinx-5prealpha/src/programs/pocketsphinx_continuous b/pocketsphinx-5prealpha/src/programs/pocketsphinx_continuous
new file mode 100755
index 0000000..fef16f0
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/programs/pocketsphinx_continuous
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# pocketsphinx_continuous - temporary wrapper script for .libs/pocketsphinx_continuous
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The pocketsphinx_continuous program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libpocketsphinx/libpocketsphinx.la /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad/libsphinxad.la /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "pocketsphinx_continuous:pocketsphinx_continuous:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "pocketsphinx_continuous:pocketsphinx_continuous:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "pocketsphinx_continuous:pocketsphinx_continuous:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='pocketsphinx_continuous'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx/.libs:/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad/.libs:/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/pocketsphinx-5prealpha/src/programs/pocketsphinx_mdef_convert b/pocketsphinx-5prealpha/src/programs/pocketsphinx_mdef_convert
new file mode 100755
index 0000000..d82dda1
--- /dev/null
+++ b/pocketsphinx-5prealpha/src/programs/pocketsphinx_mdef_convert
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# pocketsphinx_mdef_convert - temporary wrapper script for .libs/pocketsphinx_mdef_convert
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The pocketsphinx_mdef_convert program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libpocketsphinx/libpocketsphinx.la /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "pocketsphinx_mdef_convert:pocketsphinx_mdef_convert:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "pocketsphinx_mdef_convert:pocketsphinx_mdef_convert:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "pocketsphinx_mdef_convert:pocketsphinx_mdef_convert:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='pocketsphinx_mdef_convert'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/src/libpocketsphinx/.libs:/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/pocketsphinx-5prealpha/swig/Makefile b/pocketsphinx-5prealpha/swig/Makefile
index 3ac51c0..65478cd 100644
--- a/pocketsphinx-5prealpha/swig/Makefile
+++ b/pocketsphinx-5prealpha/swig/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# swig/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -167,7 +167,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -215,19 +215,19 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -255,7 +255,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -263,7 +263,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -297,15 +297,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/swig
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/swig
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/swig
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/swig
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -334,7 +334,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -387,8 +387,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -526,7 +526,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/swig/Makefile.in b/pocketsphinx-5prealpha/swig/Makefile.in
index e88c5ba..638c103 100644
--- a/pocketsphinx-5prealpha/swig/Makefile.in
+++ b/pocketsphinx-5prealpha/swig/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -167,7 +167,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -387,8 +387,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -526,7 +526,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/swig/python/.deps/pocketsphinx_wrap.Plo b/pocketsphinx-5prealpha/swig/python/.deps/pocketsphinx_wrap.Plo
index 72df4e2..52d9aae 100644
--- a/pocketsphinx-5prealpha/swig/python/.deps/pocketsphinx_wrap.Plo
+++ b/pocketsphinx-5prealpha/swig/python/.deps/pocketsphinx_wrap.Plo
@@ -3,11 +3,13 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/python2.7/pyconfig.h \
/usr/include/arm-linux-gnueabihf/python2.7/pyconfig.h \
/usr/include/python2.7/pymacconfig.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
- /usr/include/limits.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
+ /usr/include/limits.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
/usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
@@ -15,63 +17,87 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
/usr/include/arm-linux-gnueabihf/bits/xopen_lim.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h /usr/include/stdio.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/uio_lim.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/cookie_io_functions_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/error_t.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/unistd.h \
- /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
+ /usr/include/unistd.h /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
/usr/include/arm-linux-gnueabihf/bits/environments.h \
- /usr/include/arm-linux-gnueabihf/bits/confname.h /usr/include/getopt.h \
- /usr/include/arm-linux-gnueabihf/bits/unistd.h /usr/include/assert.h \
- /usr/include/python2.7/pyport.h /usr/include/inttypes.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h \
+ /usr/include/arm-linux-gnueabihf/bits/confname.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_posix.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_core.h /usr/include/crypt.h \
+ /usr/include/assert.h /usr/include/python2.7/pyport.h \
+ /usr/include/inttypes.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h \
/usr/include/stdint.h /usr/include/arm-linux-gnueabihf/bits/wchar.h \
- /usr/include/math.h /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-narrow.h \
+ /usr/include/arm-linux-gnueabihf/bits/iscanonical.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /usr/include/arm-linux-gnueabihf/sys/time.h \
+ /usr/include/arm-linux-gnueabihf/sys/time.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/time.h \
/usr/include/arm-linux-gnueabihf/bits/timex.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_tm.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_itimerspec.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
+ /usr/include/arm-linux-gnueabihf/bits/statx.h \
/usr/include/python2.7/pymath.h /usr/include/python2.7/pymem.h \
/usr/include/python2.7/object.h /usr/include/python2.7/objimpl.h \
/usr/include/python2.7/pydebug.h /usr/include/python2.7/unicodeobject.h \
- /usr/include/ctype.h /usr/include/arm-linux-gnueabihf/bits/wchar2.h \
+ /usr/include/ctype.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/wint_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/mbstate_t.h \
/usr/include/python2.7/intobject.h /usr/include/python2.7/boolobject.h \
/usr/include/python2.7/longobject.h /usr/include/python2.7/floatobject.h \
/usr/include/python2.7/complexobject.h \
@@ -101,39 +127,30 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/python2.7/eval.h /usr/include/python2.7/pyctype.h \
/usr/include/python2.7/pystrtod.h /usr/include/python2.7/pystrcmp.h \
/usr/include/python2.7/dtoa.h /usr/include/python2.7/pyfpe.h \
- /usr/include/signal.h /usr/include/arm-linux-gnueabihf/bits/signum.h \
- /usr/include/arm-linux-gnueabihf/bits/siginfo.h \
- /usr/include/arm-linux-gnueabihf/bits/sigaction.h \
- /usr/include/arm-linux-gnueabihf/bits/sigcontext.h \
- /usr/include/arm-linux-gnueabihf/asm/sigcontext.h \
- /usr/include/arm-linux-gnueabihf/bits/sigstack.h \
- /usr/include/arm-linux-gnueabihf/sys/ucontext.h \
- /usr/include/arm-linux-gnueabihf/bits/sigthread.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../include/pocketsphinx.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h \
../../include/pocketsphinx_export.h ../../include/cmdln_macro.h \
../../include/ps_lattice.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h \
../../include/ps_mllr.h ../../include/ps_search.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
- /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h \
+ /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h
/usr/include/stdc-predef.h:
@@ -147,18 +164,22 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/python2.7/pymacconfig.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
@@ -173,41 +194,45 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/xopen_lim.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
+/usr/include/arm-linux-gnueabihf/bits/uio_lim.h:
/usr/include/stdio.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/cookie_io_functions_t.h:
-/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
+
+/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/string.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/errno.h:
@@ -221,44 +246,62 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
+/usr/include/arm-linux-gnueabihf/bits/types/error_t.h:
+
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/unistd.h:
/usr/include/arm-linux-gnueabihf/bits/posix_opt.h:
@@ -267,9 +310,11 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/confname.h:
-/usr/include/getopt.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_posix.h:
+
+/usr/include/arm-linux-gnueabihf/bits/getopt_core.h:
-/usr/include/arm-linux-gnueabihf/bits/unistd.h:
+/usr/include/crypt.h:
/usr/include/assert.h:
@@ -277,42 +322,54 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/inttypes.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h:
/usr/include/stdint.h:
/usr/include/arm-linux-gnueabihf/bits/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h:
+
/usr/include/math.h:
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-narrow.h:
-/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
+/usr/include/arm-linux-gnueabihf/bits/iscanonical.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
/usr/include/arm-linux-gnueabihf/sys/time.h:
+/usr/include/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/time.h:
+
/usr/include/arm-linux-gnueabihf/bits/timex.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_tm.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_itimerspec.h:
+
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
+/usr/include/arm-linux-gnueabihf/bits/statx.h:
+
/usr/include/python2.7/pymath.h:
/usr/include/python2.7/pymem.h:
@@ -327,7 +384,11 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/ctype.h:
-/usr/include/arm-linux-gnueabihf/bits/wchar2.h:
+/usr/include/wchar.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/wint_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/mbstate_t.h:
/usr/include/python2.7/intobject.h:
@@ -429,51 +490,27 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
/usr/include/python2.7/pyfpe.h:
-/usr/include/signal.h:
-
-/usr/include/arm-linux-gnueabihf/bits/signum.h:
-
-/usr/include/arm-linux-gnueabihf/bits/siginfo.h:
-
-/usr/include/arm-linux-gnueabihf/bits/sigaction.h:
-
-/usr/include/arm-linux-gnueabihf/bits/sigcontext.h:
-
-/usr/include/arm-linux-gnueabihf/asm/sigcontext.h:
-
-/usr/include/arm-linux-gnueabihf/bits/sigstack.h:
-
-/usr/include/arm-linux-gnueabihf/sys/ucontext.h:
-
-/usr/include/arm-linux-gnueabihf/bits/sigthread.h:
-
-/usr/include/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/pocketsphinx.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmd_ln.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/sphinxbase_export.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/prim_type.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinx_config.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/logmath.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fe.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fixpoint.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/feat.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/cmn.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/agc.h:
../../include/pocketsphinx_export.h:
@@ -481,24 +518,28 @@ pocketsphinx_wrap.lo: pocketsphinx_wrap.c /usr/include/stdc-predef.h \
../../include/ps_lattice.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ngram_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/mmio.h:
../../include/ps_mllr.h:
../../include/ps_search.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/fsg_model.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/glist.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/bitvec.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/ckd_alloc.h:
+
+/usr/include/setjmp.h:
+
+/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/hash_table.h:
-/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
+/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase/listelem_alloc.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
diff --git a/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0 b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0
new file mode 100755
index 0000000..a1e0910
Binary files /dev/null and b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0 differ
diff --git a/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0 b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0
new file mode 100755
index 0000000..a1e0910
Binary files /dev/null and b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0 differ
diff --git a/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0T b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0T
new file mode 100755
index 0000000..6ea753e
Binary files /dev/null and b/pocketsphinx-5prealpha/swig/python/.libs/_pocketsphinx.so.0.0.0T differ
diff --git a/pocketsphinx-5prealpha/swig/python/Makefile b/pocketsphinx-5prealpha/swig/python/Makefile
index 62eeb51..685823e 100644
--- a/pocketsphinx-5prealpha/swig/python/Makefile
+++ b/pocketsphinx-5prealpha/swig/python/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# swig/python/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -163,7 +163,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/pocketsphinx_wrap.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -200,7 +201,7 @@ am__can_run_installinfo = \
esac
am__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile)
am__pep3147_tweak = \
- sed -e 's|\.py$$||' -e 's|[^/]*$$|__pycache__/&.*.py|'
+ sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc\n&.*.pyo|'
am__pkgpyexec_PYTHON_DIST = __init__.py
py_compile = $(top_srcdir)/py-compile
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
@@ -210,7 +211,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -259,19 +260,19 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -299,7 +300,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -307,7 +308,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -341,15 +342,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/swig/python
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/swig/python
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/swig/python
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/swig/python
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -378,7 +379,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -406,7 +407,7 @@ top_builddir = ../..
top_srcdir = ../..
SUBDIRS = test
SWIG_FLAGS = -I$(top_srcdir)/include \
- -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig $(am__append_1)
+ -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig $(am__append_1)
SWIG_DIR = $(top_srcdir)/swig
SWIG_FILES = $(SWIG_DIR)/pocketsphinx.i \
$(SWIG_DIR)/ps_decoder.i \
@@ -447,8 +448,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -504,7 +505,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/pocketsphinx_wrap.Plo
+include ./$(DEPDIR)/pocketsphinx_wrap.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -565,20 +572,15 @@ uninstall-nodist_pkgpyexecPYTHON:
dir='$(DESTDIR)$(pkgpyexecdir)'; \
pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
- py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
- echo "$$py_files_pep3147";\
- pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
- pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
st=0; \
- for files in \
- "$$py_files" \
- "$$pyc_files" \
- "$$pyo_files" \
- "$$pyc_files_pep3147" \
- "$$pyo_files_pep3147" \
- ; do \
+ for files in "$$py_files" "$$pyc_files" "$$pyo_files"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
+ dir='$(DESTDIR)$(pkgpyexecdir)/__pycache__'; \
+ echo "$$py_files" | $(am__pep3147_tweak) | $(am__base_list) | \
+ while read files; do \
+ $(am__uninstall_files_from_dir) || st=$$?; \
+ done || exit $$?; \
exit $$st
install-pkgpyexecPYTHON: $(pkgpyexec_PYTHON)
@$(NORMAL_INSTALL)
@@ -613,20 +615,15 @@ uninstall-pkgpyexecPYTHON:
dir='$(DESTDIR)$(pkgpyexecdir)'; \
pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
- py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
- echo "$$py_files_pep3147";\
- pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
- pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
st=0; \
- for files in \
- "$$py_files" \
- "$$pyc_files" \
- "$$pyo_files" \
- "$$pyc_files_pep3147" \
- "$$pyo_files_pep3147" \
- ; do \
+ for files in "$$py_files" "$$pyc_files" "$$pyo_files"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
+ dir='$(DESTDIR)$(pkgpyexecdir)/__pycache__'; \
+ echo "$$py_files" | $(am__pep3147_tweak) | $(am__base_list) | \
+ while read files; do \
+ $(am__uninstall_files_from_dir) || st=$$?; \
+ done || exit $$?; \
exit $$st
# This directory's subdirectories are mostly independent; you can cd
@@ -728,7 +725,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -828,7 +828,7 @@ clean-am: clean-generic clean-libtool clean-pkgpyexecLTLIBRARIES \
mostlyclean-am
distclean: distclean-recursive
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/pocketsphinx_wrap.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -875,7 +875,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-recursive
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/pocketsphinx_wrap.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -897,8 +897,8 @@ uninstall-am: uninstall-nodist_pkgpyexecPYTHON \
.MAKE: $(am__recursive_targets) install-am install-strip
-.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
- check-am clean clean-generic clean-libtool \
+.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
+ am--depfiles check check-am clean clean-generic clean-libtool \
clean-pkgpyexecLTLIBRARIES cscopelist-am ctags ctags-am \
distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/pocketsphinx-5prealpha/swig/python/Makefile.in b/pocketsphinx-5prealpha/swig/python/Makefile.in
index 4ac4b58..7dec757 100644
--- a/pocketsphinx-5prealpha/swig/python/Makefile.in
+++ b/pocketsphinx-5prealpha/swig/python/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -163,7 +163,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/pocketsphinx_wrap.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -200,7 +201,7 @@ am__can_run_installinfo = \
esac
am__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile)
am__pep3147_tweak = \
- sed -e 's|\.py$$||' -e 's|[^/]*$$|__pycache__/&.*.py|'
+ sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc\n&.*.pyo|'
am__pkgpyexec_PYTHON_DIST = __init__.py
py_compile = $(top_srcdir)/py-compile
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
@@ -210,7 +211,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -447,8 +448,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -504,7 +505,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pocketsphinx_wrap.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pocketsphinx_wrap.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -565,20 +572,15 @@ uninstall-nodist_pkgpyexecPYTHON:
dir='$(DESTDIR)$(pkgpyexecdir)'; \
pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
- py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
- echo "$$py_files_pep3147";\
- pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
- pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
st=0; \
- for files in \
- "$$py_files" \
- "$$pyc_files" \
- "$$pyo_files" \
- "$$pyc_files_pep3147" \
- "$$pyo_files_pep3147" \
- ; do \
+ for files in "$$py_files" "$$pyc_files" "$$pyo_files"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
+ dir='$(DESTDIR)$(pkgpyexecdir)/__pycache__'; \
+ echo "$$py_files" | $(am__pep3147_tweak) | $(am__base_list) | \
+ while read files; do \
+ $(am__uninstall_files_from_dir) || st=$$?; \
+ done || exit $$?; \
exit $$st
install-pkgpyexecPYTHON: $(pkgpyexec_PYTHON)
@$(NORMAL_INSTALL)
@@ -613,20 +615,15 @@ uninstall-pkgpyexecPYTHON:
dir='$(DESTDIR)$(pkgpyexecdir)'; \
pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
- py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
- echo "$$py_files_pep3147";\
- pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
- pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
st=0; \
- for files in \
- "$$py_files" \
- "$$pyc_files" \
- "$$pyo_files" \
- "$$pyc_files_pep3147" \
- "$$pyo_files_pep3147" \
- ; do \
+ for files in "$$py_files" "$$pyc_files" "$$pyo_files"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
+ dir='$(DESTDIR)$(pkgpyexecdir)/__pycache__'; \
+ echo "$$py_files" | $(am__pep3147_tweak) | $(am__base_list) | \
+ while read files; do \
+ $(am__uninstall_files_from_dir) || st=$$?; \
+ done || exit $$?; \
exit $$st
# This directory's subdirectories are mostly independent; you can cd
@@ -728,7 +725,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -828,7 +828,7 @@ clean-am: clean-generic clean-libtool clean-pkgpyexecLTLIBRARIES \
mostlyclean-am
distclean: distclean-recursive
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/pocketsphinx_wrap.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -875,7 +875,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-recursive
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/pocketsphinx_wrap.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -897,8 +897,8 @@ uninstall-am: uninstall-nodist_pkgpyexecPYTHON \
.MAKE: $(am__recursive_targets) install-am install-strip
-.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
- check-am clean clean-generic clean-libtool \
+.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
+ am--depfiles check check-am clean clean-generic clean-libtool \
clean-pkgpyexecLTLIBRARIES cscopelist-am ctags ctags-am \
distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/pocketsphinx-5prealpha/swig/python/pocketsphinx.py b/pocketsphinx-5prealpha/swig/python/pocketsphinx.py
new file mode 100644
index 0000000..a23f67a
--- /dev/null
+++ b/pocketsphinx-5prealpha/swig/python/pocketsphinx.py
@@ -0,0 +1,490 @@
+# This file was automatically generated by SWIG (http://www.swig.org).
+# Version 2.0.11
+#
+# Do not make changes to this file unless you know what you are doing--modify
+# the SWIG interface file instead.
+
+
+
+
+"""
+This documentation was automatically generated using original comments in
+Doxygen format. As some C types and data structures cannot be directly mapped
+into Python types, some non-trivial type conversion could have place.
+Basically a type is replaced with another one that has the closest match, and
+sometimes one argument of generated function comprises several arguments of the
+original function (usually two).
+
+Functions having error code as the return value and returning effective
+value in one of its arguments are transformed so that the effective value is
+returned in a regular fashion and run-time exception is being thrown in case of
+negative error code.
+"""
+
+
+from sys import version_info
+if version_info >= (2,6,0):
+ def swig_import_helper():
+ from os.path import dirname
+ import imp
+ fp = None
+ try:
+ fp, pathname, description = imp.find_module('_pocketsphinx', [dirname(__file__)])
+ except ImportError:
+ import _pocketsphinx
+ return _pocketsphinx
+ if fp is not None:
+ try:
+ _mod = imp.load_module('_pocketsphinx', fp, pathname, description)
+ finally:
+ fp.close()
+ return _mod
+ _pocketsphinx = swig_import_helper()
+ del swig_import_helper
+else:
+ import _pocketsphinx
+del version_info
+try:
+ _swig_property = property
+except NameError:
+ pass # Python < 2.2 doesn't have 'property'.
+def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
+ if (name == "thisown"): return self.this.own(value)
+ if (name == "this"):
+ if type(value).__name__ == 'SwigPyObject':
+ self.__dict__[name] = value
+ return
+ method = class_type.__swig_setmethods__.get(name,None)
+ if method: return method(self,value)
+ if (not static):
+ self.__dict__[name] = value
+ else:
+ raise AttributeError("You cannot add attributes to %s" % self)
+
+def _swig_setattr(self,class_type,name,value):
+ return _swig_setattr_nondynamic(self,class_type,name,value,0)
+
+def _swig_getattr(self,class_type,name):
+ if (name == "thisown"): return self.this.own()
+ method = class_type.__swig_getmethods__.get(name,None)
+ if method: return method(self)
+ raise AttributeError(name)
+
+def _swig_repr(self):
+ try: strthis = "proxy of " + self.this.__repr__()
+ except: strthis = ""
+ return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
+
+try:
+ _object = object
+ _newclass = 1
+except AttributeError:
+ class _object : pass
+ _newclass = 0
+
+
+import sphinxbase
+class Hypothesis(_object):
+ """Proxy of C Hypothesis struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Hypothesis, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Hypothesis, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["hypstr"] = _pocketsphinx.Hypothesis_hypstr_set
+ __swig_getmethods__["hypstr"] = _pocketsphinx.Hypothesis_hypstr_get
+ if _newclass:hypstr = _swig_property(_pocketsphinx.Hypothesis_hypstr_get, _pocketsphinx.Hypothesis_hypstr_set)
+ __swig_setmethods__["best_score"] = _pocketsphinx.Hypothesis_best_score_set
+ __swig_getmethods__["best_score"] = _pocketsphinx.Hypothesis_best_score_get
+ if _newclass:best_score = _swig_property(_pocketsphinx.Hypothesis_best_score_get, _pocketsphinx.Hypothesis_best_score_set)
+ __swig_setmethods__["prob"] = _pocketsphinx.Hypothesis_prob_set
+ __swig_getmethods__["prob"] = _pocketsphinx.Hypothesis_prob_get
+ if _newclass:prob = _swig_property(_pocketsphinx.Hypothesis_prob_get, _pocketsphinx.Hypothesis_prob_set)
+ def __init__(self, *args):
+ """__init__(Hypothesis self, char const * hypstr, int best_score, int prob) -> Hypothesis"""
+ this = _pocketsphinx.new_Hypothesis(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_Hypothesis
+ __del__ = lambda self : None;
+Hypothesis_swigregister = _pocketsphinx.Hypothesis_swigregister
+Hypothesis_swigregister(Hypothesis)
+
+class Segment(_object):
+ """Proxy of C Segment struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Segment, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Segment, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["word"] = _pocketsphinx.Segment_word_set
+ __swig_getmethods__["word"] = _pocketsphinx.Segment_word_get
+ if _newclass:word = _swig_property(_pocketsphinx.Segment_word_get, _pocketsphinx.Segment_word_set)
+ __swig_setmethods__["ascore"] = _pocketsphinx.Segment_ascore_set
+ __swig_getmethods__["ascore"] = _pocketsphinx.Segment_ascore_get
+ if _newclass:ascore = _swig_property(_pocketsphinx.Segment_ascore_get, _pocketsphinx.Segment_ascore_set)
+ __swig_setmethods__["lscore"] = _pocketsphinx.Segment_lscore_set
+ __swig_getmethods__["lscore"] = _pocketsphinx.Segment_lscore_get
+ if _newclass:lscore = _swig_property(_pocketsphinx.Segment_lscore_get, _pocketsphinx.Segment_lscore_set)
+ __swig_setmethods__["lback"] = _pocketsphinx.Segment_lback_set
+ __swig_getmethods__["lback"] = _pocketsphinx.Segment_lback_get
+ if _newclass:lback = _swig_property(_pocketsphinx.Segment_lback_get, _pocketsphinx.Segment_lback_set)
+ __swig_setmethods__["prob"] = _pocketsphinx.Segment_prob_set
+ __swig_getmethods__["prob"] = _pocketsphinx.Segment_prob_get
+ if _newclass:prob = _swig_property(_pocketsphinx.Segment_prob_get, _pocketsphinx.Segment_prob_set)
+ __swig_setmethods__["start_frame"] = _pocketsphinx.Segment_start_frame_set
+ __swig_getmethods__["start_frame"] = _pocketsphinx.Segment_start_frame_get
+ if _newclass:start_frame = _swig_property(_pocketsphinx.Segment_start_frame_get, _pocketsphinx.Segment_start_frame_set)
+ __swig_setmethods__["end_frame"] = _pocketsphinx.Segment_end_frame_set
+ __swig_getmethods__["end_frame"] = _pocketsphinx.Segment_end_frame_get
+ if _newclass:end_frame = _swig_property(_pocketsphinx.Segment_end_frame_get, _pocketsphinx.Segment_end_frame_set)
+ def fromIter(*args):
+ """fromIter(ps_seg_t * itor) -> Segment"""
+ return _pocketsphinx.Segment_fromIter(*args)
+
+ if _newclass:fromIter = staticmethod(fromIter)
+ __swig_getmethods__["fromIter"] = lambda x: fromIter
+ __swig_destroy__ = _pocketsphinx.delete_Segment
+ __del__ = lambda self : None;
+ def __init__(self):
+ """__init__(Segment self) -> Segment"""
+ this = _pocketsphinx.new_Segment()
+ try: self.this.append(this)
+ except: self.this = this
+Segment_swigregister = _pocketsphinx.Segment_swigregister
+Segment_swigregister(Segment)
+
+def Segment_fromIter(*args):
+ """Segment_fromIter(ps_seg_t * itor) -> Segment"""
+ return _pocketsphinx.Segment_fromIter(*args)
+
+class NBest(_object):
+ """Proxy of C NBest struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NBest, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NBest, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["hypstr"] = _pocketsphinx.NBest_hypstr_set
+ __swig_getmethods__["hypstr"] = _pocketsphinx.NBest_hypstr_get
+ if _newclass:hypstr = _swig_property(_pocketsphinx.NBest_hypstr_get, _pocketsphinx.NBest_hypstr_set)
+ __swig_setmethods__["score"] = _pocketsphinx.NBest_score_set
+ __swig_getmethods__["score"] = _pocketsphinx.NBest_score_get
+ if _newclass:score = _swig_property(_pocketsphinx.NBest_score_get, _pocketsphinx.NBest_score_set)
+ def fromIter(*args):
+ """fromIter(ps_nbest_t * itor) -> NBest"""
+ return _pocketsphinx.NBest_fromIter(*args)
+
+ if _newclass:fromIter = staticmethod(fromIter)
+ __swig_getmethods__["fromIter"] = lambda x: fromIter
+ def hyp(self):
+ """hyp(NBest self) -> Hypothesis"""
+ return _pocketsphinx.NBest_hyp(self)
+
+ __swig_destroy__ = _pocketsphinx.delete_NBest
+ __del__ = lambda self : None;
+ def __init__(self):
+ """__init__(NBest self) -> NBest"""
+ this = _pocketsphinx.new_NBest()
+ try: self.this.append(this)
+ except: self.this = this
+NBest_swigregister = _pocketsphinx.NBest_swigregister
+NBest_swigregister(NBest)
+
+def NBest_fromIter(*args):
+ """NBest_fromIter(ps_nbest_t * itor) -> NBest"""
+ return _pocketsphinx.NBest_fromIter(*args)
+
+class SegmentIterator(_object):
+ """Proxy of C SegmentIterator struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SegmentIterator, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SegmentIterator, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["ptr"] = _pocketsphinx.SegmentIterator_ptr_set
+ __swig_getmethods__["ptr"] = _pocketsphinx.SegmentIterator_ptr_get
+ if _newclass:ptr = _swig_property(_pocketsphinx.SegmentIterator_ptr_get, _pocketsphinx.SegmentIterator_ptr_set)
+ def __init__(self, *args):
+ """__init__(SegmentIterator self, ps_seg_t * ptr) -> SegmentIterator"""
+ this = _pocketsphinx.new_SegmentIterator(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_SegmentIterator
+ __del__ = lambda self : None;
+ def next(self):
+ """next(SegmentIterator self) -> Segment"""
+ return _pocketsphinx.SegmentIterator_next(self)
+
+ def __next__(self):
+ """__next__(SegmentIterator self) -> Segment"""
+ return _pocketsphinx.SegmentIterator___next__(self)
+
+SegmentIterator_swigregister = _pocketsphinx.SegmentIterator_swigregister
+SegmentIterator_swigregister(SegmentIterator)
+
+class NBestIterator(_object):
+ """Proxy of C NBestIterator struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NBestIterator, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NBestIterator, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["ptr"] = _pocketsphinx.NBestIterator_ptr_set
+ __swig_getmethods__["ptr"] = _pocketsphinx.NBestIterator_ptr_get
+ if _newclass:ptr = _swig_property(_pocketsphinx.NBestIterator_ptr_get, _pocketsphinx.NBestIterator_ptr_set)
+ def __init__(self, *args):
+ """__init__(NBestIterator self, ps_nbest_t * ptr) -> NBestIterator"""
+ this = _pocketsphinx.new_NBestIterator(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_NBestIterator
+ __del__ = lambda self : None;
+ def next(self):
+ """next(NBestIterator self) -> NBest"""
+ return _pocketsphinx.NBestIterator_next(self)
+
+ def __next__(self):
+ """__next__(NBestIterator self) -> NBest"""
+ return _pocketsphinx.NBestIterator___next__(self)
+
+NBestIterator_swigregister = _pocketsphinx.NBestIterator_swigregister
+NBestIterator_swigregister(NBestIterator)
+
+class Decoder(_object):
+ """Proxy of C Decoder struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Decoder, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Decoder, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """
+ __init__(Decoder self) -> Decoder
+ __init__(Decoder self, Config config) -> Decoder
+ """
+ this = _pocketsphinx.new_Decoder(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_Decoder
+ __del__ = lambda self : None;
+ def reinit(self, *args):
+ """reinit(Decoder self, Config config)"""
+ return _pocketsphinx.Decoder_reinit(self, *args)
+
+ def load_dict(self, *args):
+ """load_dict(Decoder self, char const * fdict, char const * ffilter, char const * format)"""
+ return _pocketsphinx.Decoder_load_dict(self, *args)
+
+ def save_dict(self, *args):
+ """save_dict(Decoder self, char const * dictfile, char const * format)"""
+ return _pocketsphinx.Decoder_save_dict(self, *args)
+
+ def add_word(self, *args):
+ """add_word(Decoder self, char const * word, char const * phones, int update)"""
+ return _pocketsphinx.Decoder_add_word(self, *args)
+
+ def lookup_word(self, *args):
+ """lookup_word(Decoder self, char const * word) -> char *"""
+ return _pocketsphinx.Decoder_lookup_word(self, *args)
+
+ def get_lattice(self):
+ """get_lattice(Decoder self) -> Lattice"""
+ return _pocketsphinx.Decoder_get_lattice(self)
+
+ def get_config(self):
+ """get_config(Decoder self) -> Config"""
+ return _pocketsphinx.Decoder_get_config(self)
+
+ def default_config():
+ """default_config() -> Config"""
+ return _pocketsphinx.Decoder_default_config()
+
+ if _newclass:default_config = staticmethod(default_config)
+ __swig_getmethods__["default_config"] = lambda x: default_config
+ def file_config(*args):
+ """file_config(char const * path) -> Config"""
+ return _pocketsphinx.Decoder_file_config(*args)
+
+ if _newclass:file_config = staticmethod(file_config)
+ __swig_getmethods__["file_config"] = lambda x: file_config
+ def start_stream(self):
+ """start_stream(Decoder self)"""
+ return _pocketsphinx.Decoder_start_stream(self)
+
+ def start_utt(self):
+ """start_utt(Decoder self)"""
+ return _pocketsphinx.Decoder_start_utt(self)
+
+ def end_utt(self):
+ """end_utt(Decoder self)"""
+ return _pocketsphinx.Decoder_end_utt(self)
+
+ def process_raw(self, *args):
+ """process_raw(Decoder self, char const * SDATA, bool no_search, bool full_utt) -> int"""
+ return _pocketsphinx.Decoder_process_raw(self, *args)
+
+ def process_cep(self, *args):
+ """process_cep(Decoder self, char const * SDATA, bool no_search, bool full_utt) -> int"""
+ return _pocketsphinx.Decoder_process_cep(self, *args)
+
+ def hyp(self):
+ """hyp(Decoder self) -> Hypothesis"""
+ return _pocketsphinx.Decoder_hyp(self)
+
+ def get_fe(self):
+ """get_fe(Decoder self) -> FrontEnd"""
+ return _pocketsphinx.Decoder_get_fe(self)
+
+ def get_feat(self):
+ """get_feat(Decoder self) -> Feature"""
+ return _pocketsphinx.Decoder_get_feat(self)
+
+ def get_in_speech(self):
+ """get_in_speech(Decoder self) -> bool"""
+ return _pocketsphinx.Decoder_get_in_speech(self)
+
+ def get_fsg(self, *args):
+ """get_fsg(Decoder self, char const * name) -> FsgModel"""
+ return _pocketsphinx.Decoder_get_fsg(self, *args)
+
+ def set_fsg(self, *args):
+ """set_fsg(Decoder self, char const * name, FsgModel fsg)"""
+ return _pocketsphinx.Decoder_set_fsg(self, *args)
+
+ def set_jsgf_file(self, *args):
+ """set_jsgf_file(Decoder self, char const * name, char const * path)"""
+ return _pocketsphinx.Decoder_set_jsgf_file(self, *args)
+
+ def set_jsgf_string(self, *args):
+ """set_jsgf_string(Decoder self, char const * name, char const * jsgf_string)"""
+ return _pocketsphinx.Decoder_set_jsgf_string(self, *args)
+
+ def get_kws(self, *args):
+ """get_kws(Decoder self, char const * name) -> char const *"""
+ return _pocketsphinx.Decoder_get_kws(self, *args)
+
+ def set_kws(self, *args):
+ """set_kws(Decoder self, char const * name, char const * keyfile)"""
+ return _pocketsphinx.Decoder_set_kws(self, *args)
+
+ def set_keyphrase(self, *args):
+ """set_keyphrase(Decoder self, char const * name, char const * keyphrase)"""
+ return _pocketsphinx.Decoder_set_keyphrase(self, *args)
+
+ def set_allphone_file(self, *args):
+ """set_allphone_file(Decoder self, char const * name, char const * lmfile)"""
+ return _pocketsphinx.Decoder_set_allphone_file(self, *args)
+
+ def get_lm(self, *args):
+ """get_lm(Decoder self, char const * name) -> NGramModel"""
+ return _pocketsphinx.Decoder_get_lm(self, *args)
+
+ def set_lm(self, *args):
+ """set_lm(Decoder self, char const * name, NGramModel lm)"""
+ return _pocketsphinx.Decoder_set_lm(self, *args)
+
+ def set_lm_file(self, *args):
+ """set_lm_file(Decoder self, char const * name, char const * path)"""
+ return _pocketsphinx.Decoder_set_lm_file(self, *args)
+
+ def get_logmath(self):
+ """get_logmath(Decoder self) -> LogMath"""
+ return _pocketsphinx.Decoder_get_logmath(self)
+
+ def set_search(self, *args):
+ """set_search(Decoder self, char const * search_name)"""
+ return _pocketsphinx.Decoder_set_search(self, *args)
+
+ def get_search(self):
+ """get_search(Decoder self) -> char const *"""
+ return _pocketsphinx.Decoder_get_search(self)
+
+ def n_frames(self):
+ """n_frames(Decoder self) -> int"""
+ return _pocketsphinx.Decoder_n_frames(self)
+
+ def seg(self):
+ """seg(Decoder self) -> SegmentList"""
+ return _pocketsphinx.Decoder_seg(self)
+
+ def nbest(self):
+ """nbest(Decoder self) -> NBestList"""
+ return _pocketsphinx.Decoder_nbest(self)
+
+Decoder_swigregister = _pocketsphinx.Decoder_swigregister
+Decoder_swigregister(Decoder)
+
+def Decoder_default_config():
+ """Decoder_default_config() -> Config"""
+ return _pocketsphinx.Decoder_default_config()
+
+def Decoder_file_config(*args):
+ """Decoder_file_config(char const * path) -> Config"""
+ return _pocketsphinx.Decoder_file_config(*args)
+
+class Lattice(_object):
+ """Proxy of C Lattice struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Lattice, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Lattice, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """
+ __init__(Lattice self, char const * path) -> Lattice
+ __init__(Lattice self, Decoder decoder, char * path) -> Lattice
+ """
+ this = _pocketsphinx.new_Lattice(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _pocketsphinx.delete_Lattice
+ __del__ = lambda self : None;
+ def write(self, *args):
+ """write(Lattice self, char const * path)"""
+ return _pocketsphinx.Lattice_write(self, *args)
+
+ def write_htk(self, *args):
+ """write_htk(Lattice self, char const * path)"""
+ return _pocketsphinx.Lattice_write_htk(self, *args)
+
+Lattice_swigregister = _pocketsphinx.Lattice_swigregister
+Lattice_swigregister(Lattice)
+
+class NBestList(_object):
+ """Proxy of C NBestList struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NBestList, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NBestList, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ def __iter__(self):
+ """__iter__(NBestList self) -> NBestIterator"""
+ return _pocketsphinx.NBestList___iter__(self)
+
+ __swig_destroy__ = _pocketsphinx.delete_NBestList
+ __del__ = lambda self : None;
+NBestList_swigregister = _pocketsphinx.NBestList_swigregister
+NBestList_swigregister(NBestList)
+
+class SegmentList(_object):
+ """Proxy of C SegmentList struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, SegmentList, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, SegmentList, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ def __iter__(self):
+ """__iter__(SegmentList self) -> SegmentIterator"""
+ return _pocketsphinx.SegmentList___iter__(self)
+
+ __swig_destroy__ = _pocketsphinx.delete_SegmentList
+ __del__ = lambda self : None;
+SegmentList_swigregister = _pocketsphinx.SegmentList_swigregister
+SegmentList_swigregister(SegmentList)
+
+# This file is compatible with both classic and new-style classes.
+
+
diff --git a/pocketsphinx-5prealpha/swig/python/pocketsphinx_wrap.c b/pocketsphinx-5prealpha/swig/python/pocketsphinx_wrap.c
new file mode 100644
index 0000000..48a2631
--- /dev/null
+++ b/pocketsphinx-5prealpha/swig/python/pocketsphinx_wrap.c
@@ -0,0 +1,7482 @@
+/* ----------------------------------------------------------------------------
+ * This file was automatically generated by SWIG (http://www.swig.org).
+ * Version 2.0.11
+ *
+ * This file is not intended to be easily readable and contains a number of
+ * coding conventions designed to improve portability and efficiency. Do not make
+ * changes to this file unless you know what you are doing--modify the SWIG
+ * interface file instead.
+ * ----------------------------------------------------------------------------- */
+
+#include
+
+
+
+#ifndef __cplusplus
+typedef int bool;
+#define true 1
+#define false 0
+#endif
+
+#include
+
+typedef ps_decoder_t Decoder;
+typedef ps_decoder_t SegmentList;
+typedef ps_decoder_t NBestList;
+typedef ps_lattice_t Lattice;
+
+
+#define SWIGPYTHON
+#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
+
+/* -----------------------------------------------------------------------------
+ * This section contains generic SWIG labels for method/variable
+ * declarations/attributes, and other compiler dependent labels.
+ * ----------------------------------------------------------------------------- */
+
+/* template workaround for compilers that cannot correctly implement the C++ standard */
+#ifndef SWIGTEMPLATEDISAMBIGUATOR
+# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
+# define SWIGTEMPLATEDISAMBIGUATOR template
+# elif defined(__HP_aCC)
+/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */
+/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */
+# define SWIGTEMPLATEDISAMBIGUATOR template
+# else
+# define SWIGTEMPLATEDISAMBIGUATOR
+# endif
+#endif
+
+/* inline attribute */
+#ifndef SWIGINLINE
+# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
+# define SWIGINLINE inline
+# else
+# define SWIGINLINE
+# endif
+#endif
+
+/* attribute recognised by some compilers to avoid 'unused' warnings */
+#ifndef SWIGUNUSED
+# if defined(__GNUC__)
+# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
+# define SWIGUNUSED __attribute__ ((__unused__))
+# else
+# define SWIGUNUSED
+# endif
+# elif defined(__ICC)
+# define SWIGUNUSED __attribute__ ((__unused__))
+# else
+# define SWIGUNUSED
+# endif
+#endif
+
+#ifndef SWIG_MSC_UNSUPPRESS_4505
+# if defined(_MSC_VER)
+# pragma warning(disable : 4505) /* unreferenced local function has been removed */
+# endif
+#endif
+
+#ifndef SWIGUNUSEDPARM
+# ifdef __cplusplus
+# define SWIGUNUSEDPARM(p)
+# else
+# define SWIGUNUSEDPARM(p) p SWIGUNUSED
+# endif
+#endif
+
+/* internal SWIG method */
+#ifndef SWIGINTERN
+# define SWIGINTERN static SWIGUNUSED
+#endif
+
+/* internal inline SWIG method */
+#ifndef SWIGINTERNINLINE
+# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
+#endif
+
+/* exporting methods */
+#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
+# ifndef GCC_HASCLASSVISIBILITY
+# define GCC_HASCLASSVISIBILITY
+# endif
+#endif
+
+#ifndef SWIGEXPORT
+# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# if defined(STATIC_LINKED)
+# define SWIGEXPORT
+# else
+# define SWIGEXPORT __declspec(dllexport)
+# endif
+# else
+# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
+# define SWIGEXPORT __attribute__ ((visibility("default")))
+# else
+# define SWIGEXPORT
+# endif
+# endif
+#endif
+
+/* calling conventions for Windows */
+#ifndef SWIGSTDCALL
+# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# define SWIGSTDCALL __stdcall
+# else
+# define SWIGSTDCALL
+# endif
+#endif
+
+/* Deal with Microsoft's attempt at deprecating C standard runtime functions */
+#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
+# define _CRT_SECURE_NO_DEPRECATE
+#endif
+
+/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */
+#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
+# define _SCL_SECURE_NO_DEPRECATE
+#endif
+
+
+
+#if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
+/* Use debug wrappers with the Python release dll */
+# undef _DEBUG
+# include
+# define _DEBUG
+#else
+# include
+#endif
+
+/* -----------------------------------------------------------------------------
+ * swigrun.swg
+ *
+ * This file contains generic C API SWIG runtime support for pointer
+ * type checking.
+ * ----------------------------------------------------------------------------- */
+
+/* This should only be incremented when either the layout of swig_type_info changes,
+ or for whatever reason, the runtime changes incompatibly */
+#define SWIG_RUNTIME_VERSION "4"
+
+/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
+#ifdef SWIG_TYPE_TABLE
+# define SWIG_QUOTE_STRING(x) #x
+# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
+# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
+#else
+# define SWIG_TYPE_TABLE_NAME
+#endif
+
+/*
+ You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
+ creating a static or dynamic library from the SWIG runtime code.
+ In 99.9% of the cases, SWIG just needs to declare them as 'static'.
+
+ But only do this if strictly necessary, ie, if you have problems
+ with your compiler or suchlike.
+*/
+
+#ifndef SWIGRUNTIME
+# define SWIGRUNTIME SWIGINTERN
+#endif
+
+#ifndef SWIGRUNTIMEINLINE
+# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
+#endif
+
+/* Generic buffer size */
+#ifndef SWIG_BUFFER_SIZE
+# define SWIG_BUFFER_SIZE 1024
+#endif
+
+/* Flags for pointer conversions */
+#define SWIG_POINTER_DISOWN 0x1
+#define SWIG_CAST_NEW_MEMORY 0x2
+
+/* Flags for new pointer objects */
+#define SWIG_POINTER_OWN 0x1
+
+
+/*
+ Flags/methods for returning states.
+
+ The SWIG conversion methods, as ConvertPtr, return an integer
+ that tells if the conversion was successful or not. And if not,
+ an error code can be returned (see swigerrors.swg for the codes).
+
+ Use the following macros/flags to set or process the returning
+ states.
+
+ In old versions of SWIG, code such as the following was usually written:
+
+ if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
+ // success code
+ } else {
+ //fail code
+ }
+
+ Now you can be more explicit:
+
+ int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
+ if (SWIG_IsOK(res)) {
+ // success code
+ } else {
+ // fail code
+ }
+
+ which is the same really, but now you can also do
+
+ Type *ptr;
+ int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
+ if (SWIG_IsOK(res)) {
+ // success code
+ if (SWIG_IsNewObj(res) {
+ ...
+ delete *ptr;
+ } else {
+ ...
+ }
+ } else {
+ // fail code
+ }
+
+ I.e., now SWIG_ConvertPtr can return new objects and you can
+ identify the case and take care of the deallocation. Of course that
+ also requires SWIG_ConvertPtr to return new result values, such as
+
+ int SWIG_ConvertPtr(obj, ptr,...) {
+ if () {
+ if () {
+ *ptr = ;
+ return SWIG_NEWOBJ;
+ } else {
+ *ptr = ;
+ return SWIG_OLDOBJ;
+ }
+ } else {
+ return SWIG_BADOBJ;
+ }
+ }
+
+ Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
+ more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
+ SWIG errors code.
+
+ Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
+ allows to return the 'cast rank', for example, if you have this
+
+ int food(double)
+ int fooi(int);
+
+ and you call
+
+ food(1) // cast rank '1' (1 -> 1.0)
+ fooi(1) // cast rank '0'
+
+ just use the SWIG_AddCast()/SWIG_CheckState()
+*/
+
+#define SWIG_OK (0)
+#define SWIG_ERROR (-1)
+#define SWIG_IsOK(r) (r >= 0)
+#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
+
+/* The CastRankLimit says how many bits are used for the cast rank */
+#define SWIG_CASTRANKLIMIT (1 << 8)
+/* The NewMask denotes the object was created (using new/malloc) */
+#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
+/* The TmpMask is for in/out typemaps that use temporal objects */
+#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
+/* Simple returning values */
+#define SWIG_BADOBJ (SWIG_ERROR)
+#define SWIG_OLDOBJ (SWIG_OK)
+#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
+#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
+/* Check, add and del mask methods */
+#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
+#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
+#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
+#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
+#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
+#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
+
+/* Cast-Rank Mode */
+#if defined(SWIG_CASTRANK_MODE)
+# ifndef SWIG_TypeRank
+# define SWIG_TypeRank unsigned long
+# endif
+# ifndef SWIG_MAXCASTRANK /* Default cast allowed */
+# define SWIG_MAXCASTRANK (2)
+# endif
+# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
+# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
+SWIGINTERNINLINE int SWIG_AddCast(int r) {
+ return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
+}
+SWIGINTERNINLINE int SWIG_CheckState(int r) {
+ return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
+}
+#else /* no cast-rank mode */
+# define SWIG_AddCast(r) (r)
+# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
+#endif
+
+
+#include
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef void *(*swig_converter_func)(void *, int *);
+typedef struct swig_type_info *(*swig_dycast_func)(void **);
+
+/* Structure to store information on one type */
+typedef struct swig_type_info {
+ const char *name; /* mangled name of this type */
+ const char *str; /* human readable name of this type */
+ swig_dycast_func dcast; /* dynamic cast function down a hierarchy */
+ struct swig_cast_info *cast; /* linked list of types that can cast into this type */
+ void *clientdata; /* language specific type data */
+ int owndata; /* flag if the structure owns the clientdata */
+} swig_type_info;
+
+/* Structure to store a type and conversion function used for casting */
+typedef struct swig_cast_info {
+ swig_type_info *type; /* pointer to type that is equivalent to this type */
+ swig_converter_func converter; /* function to cast the void pointers */
+ struct swig_cast_info *next; /* pointer to next cast in linked list */
+ struct swig_cast_info *prev; /* pointer to the previous cast */
+} swig_cast_info;
+
+/* Structure used to store module information
+ * Each module generates one structure like this, and the runtime collects
+ * all of these structures and stores them in a circularly linked list.*/
+typedef struct swig_module_info {
+ swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */
+ size_t size; /* Number of types in this module */
+ struct swig_module_info *next; /* Pointer to next element in circularly linked list */
+ swig_type_info **type_initial; /* Array of initially generated type structures */
+ swig_cast_info **cast_initial; /* Array of initially generated casting structures */
+ void *clientdata; /* Language specific module data */
+} swig_module_info;
+
+/*
+ Compare two type names skipping the space characters, therefore
+ "char*" == "char *" and "Class" == "Class", etc.
+
+ Return 0 when the two name types are equivalent, as in
+ strncmp, but skipping ' '.
+*/
+SWIGRUNTIME int
+SWIG_TypeNameComp(const char *f1, const char *l1,
+ const char *f2, const char *l2) {
+ for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
+ while ((*f1 == ' ') && (f1 != l1)) ++f1;
+ while ((*f2 == ' ') && (f2 != l2)) ++f2;
+ if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1;
+ }
+ return (int)((l1 - f1) - (l2 - f2));
+}
+
+/*
+ Check type equivalence in a name list like ||...
+ Return 0 if equal, -1 if nb < tb, 1 if nb > tb
+*/
+SWIGRUNTIME int
+SWIG_TypeCmp(const char *nb, const char *tb) {
+ int equiv = 1;
+ const char* te = tb + strlen(tb);
+ const char* ne = nb;
+ while (equiv != 0 && *ne) {
+ for (nb = ne; *ne; ++ne) {
+ if (*ne == '|') break;
+ }
+ equiv = SWIG_TypeNameComp(nb, ne, tb, te);
+ if (*ne) ++ne;
+ }
+ return equiv;
+}
+
+/*
+ Check type equivalence in a name list like ||...
+ Return 0 if not equal, 1 if equal
+*/
+SWIGRUNTIME int
+SWIG_TypeEquiv(const char *nb, const char *tb) {
+ return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0;
+}
+
+/*
+ Check the typename
+*/
+SWIGRUNTIME swig_cast_info *
+SWIG_TypeCheck(const char *c, swig_type_info *ty) {
+ if (ty) {
+ swig_cast_info *iter = ty->cast;
+ while (iter) {
+ if (strcmp(iter->type->name, c) == 0) {
+ if (iter == ty->cast)
+ return iter;
+ /* Move iter to the top of the linked list */
+ iter->prev->next = iter->next;
+ if (iter->next)
+ iter->next->prev = iter->prev;
+ iter->next = ty->cast;
+ iter->prev = 0;
+ if (ty->cast) ty->cast->prev = iter;
+ ty->cast = iter;
+ return iter;
+ }
+ iter = iter->next;
+ }
+ }
+ return 0;
+}
+
+/*
+ Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
+*/
+SWIGRUNTIME swig_cast_info *
+SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) {
+ if (ty) {
+ swig_cast_info *iter = ty->cast;
+ while (iter) {
+ if (iter->type == from) {
+ if (iter == ty->cast)
+ return iter;
+ /* Move iter to the top of the linked list */
+ iter->prev->next = iter->next;
+ if (iter->next)
+ iter->next->prev = iter->prev;
+ iter->next = ty->cast;
+ iter->prev = 0;
+ if (ty->cast) ty->cast->prev = iter;
+ ty->cast = iter;
+ return iter;
+ }
+ iter = iter->next;
+ }
+ }
+ return 0;
+}
+
+/*
+ Cast a pointer up an inheritance hierarchy
+*/
+SWIGRUNTIMEINLINE void *
+SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
+ return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
+}
+
+/*
+ Dynamic pointer casting. Down an inheritance hierarchy
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {
+ swig_type_info *lastty = ty;
+ if (!ty || !ty->dcast) return ty;
+ while (ty && (ty->dcast)) {
+ ty = (*ty->dcast)(ptr);
+ if (ty) lastty = ty;
+ }
+ return lastty;
+}
+
+/*
+ Return the name associated with this type
+*/
+SWIGRUNTIMEINLINE const char *
+SWIG_TypeName(const swig_type_info *ty) {
+ return ty->name;
+}
+
+/*
+ Return the pretty name associated with this type,
+ that is an unmangled type name in a form presentable to the user.
+*/
+SWIGRUNTIME const char *
+SWIG_TypePrettyName(const swig_type_info *type) {
+ /* The "str" field contains the equivalent pretty names of the
+ type, separated by vertical-bar characters. We choose
+ to print the last name, as it is often (?) the most
+ specific. */
+ if (!type) return NULL;
+ if (type->str != NULL) {
+ const char *last_name = type->str;
+ const char *s;
+ for (s = type->str; *s; s++)
+ if (*s == '|') last_name = s+1;
+ return last_name;
+ }
+ else
+ return type->name;
+}
+
+/*
+ Set the clientdata field for a type
+*/
+SWIGRUNTIME void
+SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
+ swig_cast_info *cast = ti->cast;
+ /* if (ti->clientdata == clientdata) return; */
+ ti->clientdata = clientdata;
+
+ while (cast) {
+ if (!cast->converter) {
+ swig_type_info *tc = cast->type;
+ if (!tc->clientdata) {
+ SWIG_TypeClientData(tc, clientdata);
+ }
+ }
+ cast = cast->next;
+ }
+}
+SWIGRUNTIME void
+SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
+ SWIG_TypeClientData(ti, clientdata);
+ ti->owndata = 1;
+}
+
+/*
+ Search for a swig_type_info structure only by mangled name
+ Search is a O(log #types)
+
+ We start searching at module start, and finish searching when start == end.
+ Note: if start == end at the beginning of the function, we go all the way around
+ the circular list.
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_MangledTypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
+ const char *name) {
+ swig_module_info *iter = start;
+ do {
+ if (iter->size) {
+ register size_t l = 0;
+ register size_t r = iter->size - 1;
+ do {
+ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
+ register size_t i = (l + r) >> 1;
+ const char *iname = iter->types[i]->name;
+ if (iname) {
+ register int compare = strcmp(name, iname);
+ if (compare == 0) {
+ return iter->types[i];
+ } else if (compare < 0) {
+ if (i) {
+ r = i - 1;
+ } else {
+ break;
+ }
+ } else if (compare > 0) {
+ l = i + 1;
+ }
+ } else {
+ break; /* should never happen */
+ }
+ } while (l <= r);
+ }
+ iter = iter->next;
+ } while (iter != end);
+ return 0;
+}
+
+/*
+ Search for a swig_type_info structure for either a mangled name or a human readable name.
+ It first searches the mangled names of the types, which is a O(log #types)
+ If a type is not found it then searches the human readable names, which is O(#types).
+
+ We start searching at module start, and finish searching when start == end.
+ Note: if start == end at the beginning of the function, we go all the way around
+ the circular list.
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_TypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
+ const char *name) {
+ /* STEP 1: Search the name field using binary search */
+ swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
+ if (ret) {
+ return ret;
+ } else {
+ /* STEP 2: If the type hasn't been found, do a complete search
+ of the str field (the human readable name) */
+ swig_module_info *iter = start;
+ do {
+ register size_t i = 0;
+ for (; i < iter->size; ++i) {
+ if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
+ return iter->types[i];
+ }
+ iter = iter->next;
+ } while (iter != end);
+ }
+
+ /* neither found a match */
+ return 0;
+}
+
+/*
+ Pack binary data into a string
+*/
+SWIGRUNTIME char *
+SWIG_PackData(char *c, void *ptr, size_t sz) {
+ static const char hex[17] = "0123456789abcdef";
+ register const unsigned char *u = (unsigned char *) ptr;
+ register const unsigned char *eu = u + sz;
+ for (; u != eu; ++u) {
+ register unsigned char uu = *u;
+ *(c++) = hex[(uu & 0xf0) >> 4];
+ *(c++) = hex[uu & 0xf];
+ }
+ return c;
+}
+
+/*
+ Unpack binary data from a string
+*/
+SWIGRUNTIME const char *
+SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
+ register unsigned char *u = (unsigned char *) ptr;
+ register const unsigned char *eu = u + sz;
+ for (; u != eu; ++u) {
+ register char d = *(c++);
+ register unsigned char uu;
+ if ((d >= '0') && (d <= '9'))
+ uu = ((d - '0') << 4);
+ else if ((d >= 'a') && (d <= 'f'))
+ uu = ((d - ('a'-10)) << 4);
+ else
+ return (char *) 0;
+ d = *(c++);
+ if ((d >= '0') && (d <= '9'))
+ uu |= (d - '0');
+ else if ((d >= 'a') && (d <= 'f'))
+ uu |= (d - ('a'-10));
+ else
+ return (char *) 0;
+ *u = uu;
+ }
+ return c;
+}
+
+/*
+ Pack 'void *' into a string buffer.
+*/
+SWIGRUNTIME char *
+SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {
+ char *r = buff;
+ if ((2*sizeof(void *) + 2) > bsz) return 0;
+ *(r++) = '_';
+ r = SWIG_PackData(r,&ptr,sizeof(void *));
+ if (strlen(name) + 1 > (bsz - (r - buff))) return 0;
+ strcpy(r,name);
+ return buff;
+}
+
+SWIGRUNTIME const char *
+SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {
+ if (*c != '_') {
+ if (strcmp(c,"NULL") == 0) {
+ *ptr = (void *) 0;
+ return name;
+ } else {
+ return 0;
+ }
+ }
+ return SWIG_UnpackData(++c,ptr,sizeof(void *));
+}
+
+SWIGRUNTIME char *
+SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {
+ char *r = buff;
+ size_t lname = (name ? strlen(name) : 0);
+ if ((2*sz + 2 + lname) > bsz) return 0;
+ *(r++) = '_';
+ r = SWIG_PackData(r,ptr,sz);
+ if (lname) {
+ strncpy(r,name,lname+1);
+ } else {
+ *r = 0;
+ }
+ return buff;
+}
+
+SWIGRUNTIME const char *
+SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
+ if (*c != '_') {
+ if (strcmp(c,"NULL") == 0) {
+ memset(ptr,0,sz);
+ return name;
+ } else {
+ return 0;
+ }
+ }
+ return SWIG_UnpackData(++c,ptr,sz);
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+/* Errors in SWIG */
+#define SWIG_UnknownError -1
+#define SWIG_IOError -2
+#define SWIG_RuntimeError -3
+#define SWIG_IndexError -4
+#define SWIG_TypeError -5
+#define SWIG_DivisionByZero -6
+#define SWIG_OverflowError -7
+#define SWIG_SyntaxError -8
+#define SWIG_ValueError -9
+#define SWIG_SystemError -10
+#define SWIG_AttributeError -11
+#define SWIG_MemoryError -12
+#define SWIG_NullReferenceError -13
+
+
+
+/* Compatibility macros for Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+
+#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
+#define PyInt_Check(x) PyLong_Check(x)
+#define PyInt_AsLong(x) PyLong_AsLong(x)
+#define PyInt_FromLong(x) PyLong_FromLong(x)
+#define PyInt_FromSize_t(x) PyLong_FromSize_t(x)
+#define PyString_Check(name) PyBytes_Check(name)
+#define PyString_FromString(x) PyUnicode_FromString(x)
+#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args)
+#define PyString_AsString(str) PyBytes_AsString(str)
+#define PyString_Size(str) PyBytes_Size(str)
+#define PyString_InternFromString(key) PyUnicode_InternFromString(key)
+#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE
+#define PyString_AS_STRING(x) PyUnicode_AS_STRING(x)
+#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x)
+
+#endif
+
+#ifndef Py_TYPE
+# define Py_TYPE(op) ((op)->ob_type)
+#endif
+
+/* SWIG APIs for compatibility of both Python 2 & 3 */
+
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_Python_str_FromFormat PyUnicode_FromFormat
+#else
+# define SWIG_Python_str_FromFormat PyString_FromFormat
+#endif
+
+
+/* Warning: This function will allocate a new string in Python 3,
+ * so please call SWIG_Python_str_DelForPy3(x) to free the space.
+ */
+SWIGINTERN char*
+SWIG_Python_str_AsChar(PyObject *str)
+{
+#if PY_VERSION_HEX >= 0x03000000
+ char *cstr;
+ char *newstr;
+ Py_ssize_t len;
+ str = PyUnicode_AsUTF8String(str);
+ PyBytes_AsStringAndSize(str, &cstr, &len);
+ newstr = (char *) malloc(len+1);
+ memcpy(newstr, cstr, len+1);
+ Py_XDECREF(str);
+ return newstr;
+#else
+ return PyString_AsString(str);
+#endif
+}
+
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) )
+#else
+# define SWIG_Python_str_DelForPy3(x)
+#endif
+
+
+SWIGINTERN PyObject*
+SWIG_Python_str_FromChar(const char *c)
+{
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_FromString(c);
+#else
+ return PyString_FromString(c);
+#endif
+}
+
+/* Add PyOS_snprintf for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
+# define PyOS_snprintf _snprintf
+# else
+# define PyOS_snprintf snprintf
+# endif
+#endif
+
+/* A crude PyString_FromFormat implementation for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+
+#ifndef SWIG_PYBUFFER_SIZE
+# define SWIG_PYBUFFER_SIZE 1024
+#endif
+
+static PyObject *
+PyString_FromFormat(const char *fmt, ...) {
+ va_list ap;
+ char buf[SWIG_PYBUFFER_SIZE * 2];
+ int res;
+ va_start(ap, fmt);
+ res = vsnprintf(buf, sizeof(buf), fmt, ap);
+ va_end(ap);
+ return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf);
+}
+#endif
+
+/* Add PyObject_Del for old Pythons */
+#if PY_VERSION_HEX < 0x01060000
+# define PyObject_Del(op) PyMem_DEL((op))
+#endif
+#ifndef PyObject_DEL
+# define PyObject_DEL PyObject_Del
+#endif
+
+/* A crude PyExc_StopIteration exception for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+# ifndef PyExc_StopIteration
+# define PyExc_StopIteration PyExc_RuntimeError
+# endif
+# ifndef PyObject_GenericGetAttr
+# define PyObject_GenericGetAttr 0
+# endif
+#endif
+
+/* Py_NotImplemented is defined in 2.1 and up. */
+#if PY_VERSION_HEX < 0x02010000
+# ifndef Py_NotImplemented
+# define Py_NotImplemented PyExc_RuntimeError
+# endif
+#endif
+
+/* A crude PyString_AsStringAndSize implementation for old Pythons */
+#if PY_VERSION_HEX < 0x02010000
+# ifndef PyString_AsStringAndSize
+# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
+# endif
+#endif
+
+/* PySequence_Size for old Pythons */
+#if PY_VERSION_HEX < 0x02000000
+# ifndef PySequence_Size
+# define PySequence_Size PySequence_Length
+# endif
+#endif
+
+/* PyBool_FromLong for old Pythons */
+#if PY_VERSION_HEX < 0x02030000
+static
+PyObject *PyBool_FromLong(long ok)
+{
+ PyObject *result = ok ? Py_True : Py_False;
+ Py_INCREF(result);
+ return result;
+}
+#endif
+
+/* Py_ssize_t for old Pythons */
+/* This code is as recommended by: */
+/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */
+#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
+typedef int Py_ssize_t;
+# define PY_SSIZE_T_MAX INT_MAX
+# define PY_SSIZE_T_MIN INT_MIN
+typedef inquiry lenfunc;
+typedef intargfunc ssizeargfunc;
+typedef intintargfunc ssizessizeargfunc;
+typedef intobjargproc ssizeobjargproc;
+typedef intintobjargproc ssizessizeobjargproc;
+typedef getreadbufferproc readbufferproc;
+typedef getwritebufferproc writebufferproc;
+typedef getsegcountproc segcountproc;
+typedef getcharbufferproc charbufferproc;
+static long PyNumber_AsSsize_t (PyObject *x, void *SWIGUNUSEDPARM(exc))
+{
+ long result = 0;
+ PyObject *i = PyNumber_Int(x);
+ if (i) {
+ result = PyInt_AsLong(i);
+ Py_DECREF(i);
+ }
+ return result;
+}
+#endif
+
+#if PY_VERSION_HEX < 0x02050000
+#define PyInt_FromSize_t(x) PyInt_FromLong((long)x)
+#endif
+
+#if PY_VERSION_HEX < 0x02040000
+#define Py_VISIT(op) \
+ do { \
+ if (op) { \
+ int vret = visit((op), arg); \
+ if (vret) \
+ return vret; \
+ } \
+ } while (0)
+#endif
+
+#if PY_VERSION_HEX < 0x02030000
+typedef struct {
+ PyTypeObject type;
+ PyNumberMethods as_number;
+ PyMappingMethods as_mapping;
+ PySequenceMethods as_sequence;
+ PyBufferProcs as_buffer;
+ PyObject *name, *slots;
+} PyHeapTypeObject;
+#endif
+
+#if PY_VERSION_HEX < 0x02030000
+typedef destructor freefunc;
+#endif
+
+#if ((PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION > 6) || \
+ (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION > 0) || \
+ (PY_MAJOR_VERSION > 3))
+# define SWIGPY_USE_CAPSULE
+# define SWIGPY_CAPSULE_NAME ((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer_capsule" SWIG_TYPE_TABLE_NAME)
+#endif
+
+#if PY_VERSION_HEX < 0x03020000
+#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
+#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
+#endif
+
+/* -----------------------------------------------------------------------------
+ * error manipulation
+ * ----------------------------------------------------------------------------- */
+
+SWIGRUNTIME PyObject*
+SWIG_Python_ErrorType(int code) {
+ PyObject* type = 0;
+ switch(code) {
+ case SWIG_MemoryError:
+ type = PyExc_MemoryError;
+ break;
+ case SWIG_IOError:
+ type = PyExc_IOError;
+ break;
+ case SWIG_RuntimeError:
+ type = PyExc_RuntimeError;
+ break;
+ case SWIG_IndexError:
+ type = PyExc_IndexError;
+ break;
+ case SWIG_TypeError:
+ type = PyExc_TypeError;
+ break;
+ case SWIG_DivisionByZero:
+ type = PyExc_ZeroDivisionError;
+ break;
+ case SWIG_OverflowError:
+ type = PyExc_OverflowError;
+ break;
+ case SWIG_SyntaxError:
+ type = PyExc_SyntaxError;
+ break;
+ case SWIG_ValueError:
+ type = PyExc_ValueError;
+ break;
+ case SWIG_SystemError:
+ type = PyExc_SystemError;
+ break;
+ case SWIG_AttributeError:
+ type = PyExc_AttributeError;
+ break;
+ default:
+ type = PyExc_RuntimeError;
+ }
+ return type;
+}
+
+
+SWIGRUNTIME void
+SWIG_Python_AddErrorMsg(const char* mesg)
+{
+ PyObject *type = 0;
+ PyObject *value = 0;
+ PyObject *traceback = 0;
+
+ if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback);
+ if (value) {
+ char *tmp;
+ PyObject *old_str = PyObject_Str(value);
+ PyErr_Clear();
+ Py_XINCREF(type);
+
+ PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg);
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(old_str);
+ Py_DECREF(value);
+ } else {
+ PyErr_SetString(PyExc_RuntimeError, mesg);
+ }
+}
+
+#if defined(SWIG_PYTHON_NO_THREADS)
+# if defined(SWIG_PYTHON_THREADS)
+# undef SWIG_PYTHON_THREADS
+# endif
+#endif
+#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
+# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
+# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
+# define SWIG_PYTHON_USE_GIL
+# endif
+# endif
+# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
+# ifndef SWIG_PYTHON_INITIALIZE_THREADS
+# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
+# endif
+# ifdef __cplusplus /* C++ code */
+ class SWIG_Python_Thread_Block {
+ bool status;
+ PyGILState_STATE state;
+ public:
+ void end() { if (status) { PyGILState_Release(state); status = false;} }
+ SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
+ ~SWIG_Python_Thread_Block() { end(); }
+ };
+ class SWIG_Python_Thread_Allow {
+ bool status;
+ PyThreadState *save;
+ public:
+ void end() { if (status) { PyEval_RestoreThread(save); status = false; }}
+ SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
+ ~SWIG_Python_Thread_Allow() { end(); }
+ };
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
+# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
+# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
+# else /* C code */
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
+# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
+# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
+# endif
+# else /* Old thread way, not implemented, user must provide it */
+# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
+# define SWIG_PYTHON_INITIALIZE_THREADS
+# endif
+# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
+# endif
+# if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
+# define SWIG_PYTHON_THREAD_END_BLOCK
+# endif
+# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
+# endif
+# if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
+# define SWIG_PYTHON_THREAD_END_ALLOW
+# endif
+# endif
+#else /* No thread support */
+# define SWIG_PYTHON_INITIALIZE_THREADS
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
+# define SWIG_PYTHON_THREAD_END_BLOCK
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
+# define SWIG_PYTHON_THREAD_END_ALLOW
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Python API portion that goes into the runtime
+ * ----------------------------------------------------------------------------- */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Constant declarations
+ * ----------------------------------------------------------------------------- */
+
+/* Constant Types */
+#define SWIG_PY_POINTER 4
+#define SWIG_PY_BINARY 5
+
+/* Constant information structure */
+typedef struct swig_const_info {
+ int type;
+ char *name;
+ long lvalue;
+ double dvalue;
+ void *pvalue;
+ swig_type_info **ptype;
+} swig_const_info;
+
+
+/* -----------------------------------------------------------------------------
+ * Wrapper of PyInstanceMethod_New() used in Python 3
+ * It is exported to the generated module, used for -fastproxy
+ * ----------------------------------------------------------------------------- */
+#if PY_VERSION_HEX >= 0x03000000
+SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func)
+{
+ return PyInstanceMethod_New(func);
+}
+#else
+SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func))
+{
+ return NULL;
+}
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+
+/* -----------------------------------------------------------------------------
+ * pyrun.swg
+ *
+ * This file contains the runtime support for Python modules
+ * and includes code for managing global variables and pointer
+ * type checking.
+ *
+ * ----------------------------------------------------------------------------- */
+
+/* Common SWIG API */
+
+/* for raw pointers */
+#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
+#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
+#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
+
+#ifdef SWIGPYTHON_BUILTIN
+#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags)
+#else
+#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
+#endif
+
+#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
+
+#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
+#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
+#define swig_owntype int
+
+/* for raw packed data */
+#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
+#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
+
+/* for class or struct pointers */
+#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
+#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
+
+/* for C or C++ function pointers */
+#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
+#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0)
+
+/* for C++ member pointers, ie, member methods */
+#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
+#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
+
+
+/* Runtime API */
+
+#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata)
+#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
+#define SWIG_NewClientData(obj) SwigPyClientData_New(obj)
+
+#define SWIG_SetErrorObj SWIG_Python_SetErrorObj
+#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
+#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
+#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
+#define SWIG_fail goto fail
+
+
+/* Runtime API implementation */
+
+/* Error manipulation */
+
+SWIGINTERN void
+SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) {
+ SWIG_PYTHON_THREAD_BEGIN_BLOCK;
+ PyErr_SetObject(errtype, obj);
+ Py_DECREF(obj);
+ SWIG_PYTHON_THREAD_END_BLOCK;
+}
+
+SWIGINTERN void
+SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) {
+ SWIG_PYTHON_THREAD_BEGIN_BLOCK;
+ PyErr_SetString(errtype, msg);
+ SWIG_PYTHON_THREAD_END_BLOCK;
+}
+
+#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
+
+/* Set a constant value */
+
+#if defined(SWIGPYTHON_BUILTIN)
+
+SWIGINTERN void
+SwigPyBuiltin_AddPublicSymbol(PyObject *seq, const char *key) {
+ PyObject *s = PyString_InternFromString(key);
+ PyList_Append(seq, s);
+ Py_DECREF(s);
+}
+
+SWIGINTERN void
+SWIG_Python_SetConstant(PyObject *d, PyObject *public_interface, const char *name, PyObject *obj) {
+#if PY_VERSION_HEX < 0x02030000
+ PyDict_SetItemString(d, (char *)name, obj);
+#else
+ PyDict_SetItemString(d, name, obj);
+#endif
+ Py_DECREF(obj);
+ if (public_interface)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, name);
+}
+
+#else
+
+SWIGINTERN void
+SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) {
+#if PY_VERSION_HEX < 0x02030000
+ PyDict_SetItemString(d, (char *)name, obj);
+#else
+ PyDict_SetItemString(d, name, obj);
+#endif
+ Py_DECREF(obj);
+}
+
+#endif
+
+/* Append a value to the result obj */
+
+SWIGINTERN PyObject*
+SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) {
+#if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
+ if (!result) {
+ result = obj;
+ } else if (result == Py_None) {
+ Py_DECREF(result);
+ result = obj;
+ } else {
+ if (!PyList_Check(result)) {
+ PyObject *o2 = result;
+ result = PyList_New(1);
+ PyList_SetItem(result, 0, o2);
+ }
+ PyList_Append(result,obj);
+ Py_DECREF(obj);
+ }
+ return result;
+#else
+ PyObject* o2;
+ PyObject* o3;
+ if (!result) {
+ result = obj;
+ } else if (result == Py_None) {
+ Py_DECREF(result);
+ result = obj;
+ } else {
+ if (!PyTuple_Check(result)) {
+ o2 = result;
+ result = PyTuple_New(1);
+ PyTuple_SET_ITEM(result, 0, o2);
+ }
+ o3 = PyTuple_New(1);
+ PyTuple_SET_ITEM(o3, 0, obj);
+ o2 = result;
+ result = PySequence_Concat(o2, o3);
+ Py_DECREF(o2);
+ Py_DECREF(o3);
+ }
+ return result;
+#endif
+}
+
+/* Unpack the argument tuple */
+
+SWIGINTERN int
+SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)
+{
+ if (!args) {
+ if (!min && !max) {
+ return 1;
+ } else {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none",
+ name, (min == max ? "" : "at least "), (int)min);
+ return 0;
+ }
+ }
+ if (!PyTuple_Check(args)) {
+ if (min <= 1 && max >= 1) {
+ register int i;
+ objs[0] = args;
+ for (i = 1; i < max; ++i) {
+ objs[i] = 0;
+ }
+ return 2;
+ }
+ PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
+ return 0;
+ } else {
+ register Py_ssize_t l = PyTuple_GET_SIZE(args);
+ if (l < min) {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
+ name, (min == max ? "" : "at least "), (int)min, (int)l);
+ return 0;
+ } else if (l > max) {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
+ name, (min == max ? "" : "at most "), (int)max, (int)l);
+ return 0;
+ } else {
+ register int i;
+ for (i = 0; i < l; ++i) {
+ objs[i] = PyTuple_GET_ITEM(args, i);
+ }
+ for (; l < max; ++l) {
+ objs[l] = 0;
+ }
+ return i + 1;
+ }
+ }
+}
+
+/* A functor is a function object with one single object argument */
+#if PY_VERSION_HEX >= 0x02020000
+#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
+#else
+#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
+#endif
+
+/*
+ Helper for static pointer initialization for both C and C++ code, for example
+ static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
+*/
+#ifdef __cplusplus
+#define SWIG_STATIC_POINTER(var) var
+#else
+#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Pointer declarations
+ * ----------------------------------------------------------------------------- */
+
+/* Flags for new pointer objects */
+#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
+#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
+
+#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
+
+#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2)
+#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* How to access Py_None */
+#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# ifndef SWIG_PYTHON_NO_BUILD_NONE
+# ifndef SWIG_PYTHON_BUILD_NONE
+# define SWIG_PYTHON_BUILD_NONE
+# endif
+# endif
+#endif
+
+#ifdef SWIG_PYTHON_BUILD_NONE
+# ifdef Py_None
+# undef Py_None
+# define Py_None SWIG_Py_None()
+# endif
+SWIGRUNTIMEINLINE PyObject *
+_SWIG_Py_None(void)
+{
+ PyObject *none = Py_BuildValue((char*)"");
+ Py_DECREF(none);
+ return none;
+}
+SWIGRUNTIME PyObject *
+SWIG_Py_None(void)
+{
+ static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None();
+ return none;
+}
+#endif
+
+/* The python void return value */
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Py_Void(void)
+{
+ PyObject *none = Py_None;
+ Py_INCREF(none);
+ return none;
+}
+
+/* SwigPyClientData */
+
+typedef struct {
+ PyObject *klass;
+ PyObject *newraw;
+ PyObject *newargs;
+ PyObject *destroy;
+ int delargs;
+ int implicitconv;
+ PyTypeObject *pytype;
+} SwigPyClientData;
+
+SWIGRUNTIMEINLINE int
+SWIG_Python_CheckImplicit(swig_type_info *ty)
+{
+ SwigPyClientData *data = (SwigPyClientData *)ty->clientdata;
+ return data ? data->implicitconv : 0;
+}
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Python_ExceptionType(swig_type_info *desc) {
+ SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0;
+ PyObject *klass = data ? data->klass : 0;
+ return (klass ? klass : PyExc_RuntimeError);
+}
+
+
+SWIGRUNTIME SwigPyClientData *
+SwigPyClientData_New(PyObject* obj)
+{
+ if (!obj) {
+ return 0;
+ } else {
+ SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData));
+ /* the klass element */
+ data->klass = obj;
+ Py_INCREF(data->klass);
+ /* the newraw method and newargs arguments used to create a new raw instance */
+ if (PyClass_Check(obj)) {
+ data->newraw = 0;
+ data->newargs = obj;
+ Py_INCREF(obj);
+ } else {
+#if (PY_VERSION_HEX < 0x02020000)
+ data->newraw = 0;
+#else
+ data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__");
+#endif
+ if (data->newraw) {
+ Py_INCREF(data->newraw);
+ data->newargs = PyTuple_New(1);
+ PyTuple_SetItem(data->newargs, 0, obj);
+ } else {
+ data->newargs = obj;
+ }
+ Py_INCREF(data->newargs);
+ }
+ /* the destroy method, aka as the C++ delete method */
+ data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__");
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ data->destroy = 0;
+ }
+ if (data->destroy) {
+ int flags;
+ Py_INCREF(data->destroy);
+ flags = PyCFunction_GET_FLAGS(data->destroy);
+#ifdef METH_O
+ data->delargs = !(flags & (METH_O));
+#else
+ data->delargs = 0;
+#endif
+ } else {
+ data->delargs = 0;
+ }
+ data->implicitconv = 0;
+ data->pytype = 0;
+ return data;
+ }
+}
+
+SWIGRUNTIME void
+SwigPyClientData_Del(SwigPyClientData *data) {
+ Py_XDECREF(data->newraw);
+ Py_XDECREF(data->newargs);
+ Py_XDECREF(data->destroy);
+}
+
+/* =============== SwigPyObject =====================*/
+
+typedef struct {
+ PyObject_HEAD
+ void *ptr;
+ swig_type_info *ty;
+ int own;
+ PyObject *next;
+#ifdef SWIGPYTHON_BUILTIN
+ PyObject *dict;
+#endif
+} SwigPyObject;
+
+SWIGRUNTIME PyObject *
+SwigPyObject_long(SwigPyObject *v)
+{
+ return PyLong_FromVoidPtr(v->ptr);
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_format(const char* fmt, SwigPyObject *v)
+{
+ PyObject *res = NULL;
+ PyObject *args = PyTuple_New(1);
+ if (args) {
+ if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) {
+ PyObject *ofmt = SWIG_Python_str_FromChar(fmt);
+ if (ofmt) {
+#if PY_VERSION_HEX >= 0x03000000
+ res = PyUnicode_Format(ofmt,args);
+#else
+ res = PyString_Format(ofmt,args);
+#endif
+ Py_DECREF(ofmt);
+ }
+ Py_DECREF(args);
+ }
+ }
+ return res;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_oct(SwigPyObject *v)
+{
+ return SwigPyObject_format("%o",v);
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_hex(SwigPyObject *v)
+{
+ return SwigPyObject_format("%x",v);
+}
+
+SWIGRUNTIME PyObject *
+#ifdef METH_NOARGS
+SwigPyObject_repr(SwigPyObject *v)
+#else
+SwigPyObject_repr(SwigPyObject *v, PyObject *args)
+#endif
+{
+ const char *name = SWIG_TypePrettyName(v->ty);
+ PyObject *repr = SWIG_Python_str_FromFormat("", (name ? name : "unknown"), (void *)v);
+ if (v->next) {
+# ifdef METH_NOARGS
+ PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next);
+# else
+ PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args);
+# endif
+# if PY_VERSION_HEX >= 0x03000000
+ PyObject *joined = PyUnicode_Concat(repr, nrep);
+ Py_DecRef(repr);
+ Py_DecRef(nrep);
+ repr = joined;
+# else
+ PyString_ConcatAndDel(&repr,nrep);
+# endif
+ }
+ return repr;
+}
+
+SWIGRUNTIME int
+SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
+{
+ void *i = v->ptr;
+ void *j = w->ptr;
+ return (i < j) ? -1 : ((i > j) ? 1 : 0);
+}
+
+/* Added for Python 3.x, would it also be useful for Python 2.x? */
+SWIGRUNTIME PyObject*
+SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)
+{
+ PyObject* res;
+ if( op != Py_EQ && op != Py_NE ) {
+ Py_INCREF(Py_NotImplemented);
+ return Py_NotImplemented;
+ }
+ res = PyBool_FromLong( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ? 1 : 0);
+ return res;
+}
+
+
+SWIGRUNTIME PyTypeObject* SwigPyObject_TypeOnce(void);
+
+#ifdef SWIGPYTHON_BUILTIN
+static swig_type_info *SwigPyObject_stype = 0;
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_type(void) {
+ SwigPyClientData *cd;
+ assert(SwigPyObject_stype);
+ cd = (SwigPyClientData*) SwigPyObject_stype->clientdata;
+ assert(cd);
+ assert(cd->pytype);
+ return cd->pytype;
+}
+#else
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_type(void) {
+ static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyObject_TypeOnce();
+ return type;
+}
+#endif
+
+SWIGRUNTIMEINLINE int
+SwigPyObject_Check(PyObject *op) {
+#ifdef SWIGPYTHON_BUILTIN
+ PyTypeObject *target_tp = SwigPyObject_type();
+ if (PyType_IsSubtype(op->ob_type, target_tp))
+ return 1;
+ return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0);
+#else
+ return (Py_TYPE(op) == SwigPyObject_type())
+ || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0);
+#endif
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_New(void *ptr, swig_type_info *ty, int own);
+
+SWIGRUNTIME void
+SwigPyObject_dealloc(PyObject *v)
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+ PyObject *next = sobj->next;
+ if (sobj->own == SWIG_POINTER_OWN) {
+ swig_type_info *ty = sobj->ty;
+ SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
+ PyObject *destroy = data ? data->destroy : 0;
+ if (destroy) {
+ /* destroy is always a VARARGS method */
+ PyObject *res;
+ if (data->delargs) {
+ /* we need to create a temporary object to carry the destroy operation */
+ PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0);
+ res = SWIG_Python_CallFunctor(destroy, tmp);
+ Py_DECREF(tmp);
+ } else {
+ PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
+ PyObject *mself = PyCFunction_GET_SELF(destroy);
+ res = ((*meth)(mself, v));
+ }
+ Py_XDECREF(res);
+ }
+#if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
+ else {
+ const char *name = SWIG_TypePrettyName(ty);
+ printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown"));
+ }
+#endif
+ }
+ Py_XDECREF(next);
+ PyObject_DEL(v);
+}
+
+SWIGRUNTIME PyObject*
+SwigPyObject_append(PyObject* v, PyObject* next)
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+#ifndef METH_O
+ PyObject *tmp = 0;
+ if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL;
+ next = tmp;
+#endif
+ if (!SwigPyObject_Check(next)) {
+ return NULL;
+ }
+ sobj->next = next;
+ Py_INCREF(next);
+ return SWIG_Py_Void();
+}
+
+SWIGRUNTIME PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_next(PyObject* v)
+#else
+SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+ if (sobj->next) {
+ Py_INCREF(sobj->next);
+ return sobj->next;
+ } else {
+ return SWIG_Py_Void();
+ }
+}
+
+SWIGINTERN PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_disown(PyObject *v)
+#else
+SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ sobj->own = 0;
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_acquire(PyObject *v)
+#else
+SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ sobj->own = SWIG_POINTER_OWN;
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject*
+SwigPyObject_own(PyObject *v, PyObject *args)
+{
+ PyObject *val = 0;
+#if (PY_VERSION_HEX < 0x02020000)
+ if (!PyArg_ParseTuple(args,(char *)"|O:own",&val))
+#elif (PY_VERSION_HEX < 0x02050000)
+ if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val))
+#else
+ if (!PyArg_UnpackTuple(args, "own", 0, 1, &val))
+#endif
+ {
+ return NULL;
+ }
+ else
+ {
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ PyObject *obj = PyBool_FromLong(sobj->own);
+ if (val) {
+#ifdef METH_NOARGS
+ if (PyObject_IsTrue(val)) {
+ SwigPyObject_acquire(v);
+ } else {
+ SwigPyObject_disown(v);
+ }
+#else
+ if (PyObject_IsTrue(val)) {
+ SwigPyObject_acquire(v,args);
+ } else {
+ SwigPyObject_disown(v,args);
+ }
+#endif
+ }
+ return obj;
+ }
+}
+
+#ifdef METH_O
+static PyMethodDef
+swigobject_methods[] = {
+ {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"},
+ {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"acquires ownership of the pointer"},
+ {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
+ {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"},
+ {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"},
+ {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"},
+ {0, 0, 0, 0}
+};
+#else
+static PyMethodDef
+swigobject_methods[] = {
+ {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"},
+ {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"},
+ {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
+ {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"},
+ {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"},
+ {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"},
+ {0, 0, 0, 0}
+};
+#endif
+
+#if PY_VERSION_HEX < 0x02020000
+SWIGINTERN PyObject *
+SwigPyObject_getattr(SwigPyObject *sobj,char *name)
+{
+ return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name);
+}
+#endif
+
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_TypeOnce(void) {
+ static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer";
+
+ static PyNumberMethods SwigPyObject_as_number = {
+ (binaryfunc)0, /*nb_add*/
+ (binaryfunc)0, /*nb_subtract*/
+ (binaryfunc)0, /*nb_multiply*/
+ /* nb_divide removed in Python 3 */
+#if PY_VERSION_HEX < 0x03000000
+ (binaryfunc)0, /*nb_divide*/
+#endif
+ (binaryfunc)0, /*nb_remainder*/
+ (binaryfunc)0, /*nb_divmod*/
+ (ternaryfunc)0,/*nb_power*/
+ (unaryfunc)0, /*nb_negative*/
+ (unaryfunc)0, /*nb_positive*/
+ (unaryfunc)0, /*nb_absolute*/
+ (inquiry)0, /*nb_nonzero*/
+ 0, /*nb_invert*/
+ 0, /*nb_lshift*/
+ 0, /*nb_rshift*/
+ 0, /*nb_and*/
+ 0, /*nb_xor*/
+ 0, /*nb_or*/
+#if PY_VERSION_HEX < 0x03000000
+ 0, /*nb_coerce*/
+#endif
+ (unaryfunc)SwigPyObject_long, /*nb_int*/
+#if PY_VERSION_HEX < 0x03000000
+ (unaryfunc)SwigPyObject_long, /*nb_long*/
+#else
+ 0, /*nb_reserved*/
+#endif
+ (unaryfunc)0, /*nb_float*/
+#if PY_VERSION_HEX < 0x03000000
+ (unaryfunc)SwigPyObject_oct, /*nb_oct*/
+ (unaryfunc)SwigPyObject_hex, /*nb_hex*/
+#endif
+#if PY_VERSION_HEX >= 0x03000000 /* 3.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */
+#elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */
+#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
+#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */
+ 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
+#endif
+ };
+
+ static PyTypeObject swigpyobject_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"SwigPyObject", /* tp_name */
+ sizeof(SwigPyObject), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor)SwigPyObject_dealloc, /* tp_dealloc */
+ 0, /* tp_print */
+#if PY_VERSION_HEX < 0x02020000
+ (getattrfunc)SwigPyObject_getattr, /* tp_getattr */
+#else
+ (getattrfunc)0, /* tp_getattr */
+#endif
+ (setattrfunc)0, /* tp_setattr */
+#if PY_VERSION_HEX >= 0x03000000
+ 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */
+#else
+ (cmpfunc)SwigPyObject_compare, /* tp_compare */
+#endif
+ (reprfunc)SwigPyObject_repr, /* tp_repr */
+ &SwigPyObject_as_number, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ (hashfunc)0, /* tp_hash */
+ (ternaryfunc)0, /* tp_call */
+ 0, /* tp_str */
+ PyObject_GenericGetAttr, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ Py_TPFLAGS_DEFAULT, /* tp_flags */
+ swigobject_doc, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ (richcmpfunc)SwigPyObject_richcompare,/* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ swigobject_methods, /* tp_methods */
+ 0, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ 0, /* tp_new */
+ 0, /* tp_free */
+ 0, /* tp_is_gc */
+ 0, /* tp_bases */
+ 0, /* tp_mro */
+ 0, /* tp_cache */
+ 0, /* tp_subclasses */
+ 0, /* tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ swigpyobject_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ swigpyobject_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&swigpyobject_type) < 0)
+ return NULL;
+#endif
+ }
+ return &swigpyobject_type;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_New(void *ptr, swig_type_info *ty, int own)
+{
+ SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type());
+ if (sobj) {
+ sobj->ptr = ptr;
+ sobj->ty = ty;
+ sobj->own = own;
+ sobj->next = 0;
+ }
+ return (PyObject *)sobj;
+}
+
+/* -----------------------------------------------------------------------------
+ * Implements a simple Swig Packed type, and use it instead of string
+ * ----------------------------------------------------------------------------- */
+
+typedef struct {
+ PyObject_HEAD
+ void *pack;
+ swig_type_info *ty;
+ size_t size;
+} SwigPyPacked;
+
+SWIGRUNTIME int
+SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags))
+{
+ char result[SWIG_BUFFER_SIZE];
+ fputs("pack, v->size, 0, sizeof(result))) {
+ fputs("at ", fp);
+ fputs(result, fp);
+ }
+ fputs(v->ty->name,fp);
+ fputs(">", fp);
+ return 0;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_repr(SwigPyPacked *v)
+{
+ char result[SWIG_BUFFER_SIZE];
+ if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) {
+ return SWIG_Python_str_FromFormat("", result, v->ty->name);
+ } else {
+ return SWIG_Python_str_FromFormat("", v->ty->name);
+ }
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_str(SwigPyPacked *v)
+{
+ char result[SWIG_BUFFER_SIZE];
+ if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){
+ return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name);
+ } else {
+ return SWIG_Python_str_FromChar(v->ty->name);
+ }
+}
+
+SWIGRUNTIME int
+SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w)
+{
+ size_t i = v->size;
+ size_t j = w->size;
+ int s = (i < j) ? -1 : ((i > j) ? 1 : 0);
+ return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size);
+}
+
+SWIGRUNTIME PyTypeObject* SwigPyPacked_TypeOnce(void);
+
+SWIGRUNTIME PyTypeObject*
+SwigPyPacked_type(void) {
+ static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyPacked_TypeOnce();
+ return type;
+}
+
+SWIGRUNTIMEINLINE int
+SwigPyPacked_Check(PyObject *op) {
+ return ((op)->ob_type == SwigPyPacked_TypeOnce())
+ || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0);
+}
+
+SWIGRUNTIME void
+SwigPyPacked_dealloc(PyObject *v)
+{
+ if (SwigPyPacked_Check(v)) {
+ SwigPyPacked *sobj = (SwigPyPacked *) v;
+ free(sobj->pack);
+ }
+ PyObject_DEL(v);
+}
+
+SWIGRUNTIME PyTypeObject*
+SwigPyPacked_TypeOnce(void) {
+ static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer";
+ static PyTypeObject swigpypacked_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX>=0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"SwigPyPacked", /* tp_name */
+ sizeof(SwigPyPacked), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor)SwigPyPacked_dealloc, /* tp_dealloc */
+ (printfunc)SwigPyPacked_print, /* tp_print */
+ (getattrfunc)0, /* tp_getattr */
+ (setattrfunc)0, /* tp_setattr */
+#if PY_VERSION_HEX>=0x03000000
+ 0, /* tp_reserved in 3.0.1 */
+#else
+ (cmpfunc)SwigPyPacked_compare, /* tp_compare */
+#endif
+ (reprfunc)SwigPyPacked_repr, /* tp_repr */
+ 0, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ (hashfunc)0, /* tp_hash */
+ (ternaryfunc)0, /* tp_call */
+ (reprfunc)SwigPyPacked_str, /* tp_str */
+ PyObject_GenericGetAttr, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ Py_TPFLAGS_DEFAULT, /* tp_flags */
+ swigpacked_doc, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ 0, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ 0, /* tp_new */
+ 0, /* tp_free */
+ 0, /* tp_is_gc */
+ 0, /* tp_bases */
+ 0, /* tp_mro */
+ 0, /* tp_cache */
+ 0, /* tp_subclasses */
+ 0, /* tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ swigpypacked_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ swigpypacked_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&swigpypacked_type) < 0)
+ return NULL;
+#endif
+ }
+ return &swigpypacked_type;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty)
+{
+ SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type());
+ if (sobj) {
+ void *pack = malloc(size);
+ if (pack) {
+ memcpy(pack, ptr, size);
+ sobj->pack = pack;
+ sobj->ty = ty;
+ sobj->size = size;
+ } else {
+ PyObject_DEL((PyObject *) sobj);
+ sobj = 0;
+ }
+ }
+ return (PyObject *) sobj;
+}
+
+SWIGRUNTIME swig_type_info *
+SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size)
+{
+ if (SwigPyPacked_Check(obj)) {
+ SwigPyPacked *sobj = (SwigPyPacked *)obj;
+ if (sobj->size != size) return 0;
+ memcpy(ptr, sobj->pack, size);
+ return sobj->ty;
+ } else {
+ return 0;
+ }
+}
+
+/* -----------------------------------------------------------------------------
+ * pointers/data manipulation
+ * ----------------------------------------------------------------------------- */
+
+SWIGRUNTIMEINLINE PyObject *
+_SWIG_This(void)
+{
+ return SWIG_Python_str_FromChar("this");
+}
+
+static PyObject *swig_this = NULL;
+
+SWIGRUNTIME PyObject *
+SWIG_This(void)
+{
+ if (swig_this == NULL)
+ swig_this = _SWIG_This();
+ return swig_this;
+}
+
+/* #define SWIG_PYTHON_SLOW_GETSET_THIS */
+
+/* TODO: I don't know how to implement the fast getset in Python 3 right now */
+#if PY_VERSION_HEX>=0x03000000
+#define SWIG_PYTHON_SLOW_GETSET_THIS
+#endif
+
+SWIGRUNTIME SwigPyObject *
+SWIG_Python_GetSwigThis(PyObject *pyobj)
+{
+ PyObject *obj;
+
+ if (SwigPyObject_Check(pyobj))
+ return (SwigPyObject *) pyobj;
+
+#ifdef SWIGPYTHON_BUILTIN
+ (void)obj;
+# ifdef PyWeakref_CheckProxy
+ if (PyWeakref_CheckProxy(pyobj)) {
+ pyobj = PyWeakref_GET_OBJECT(pyobj);
+ if (pyobj && SwigPyObject_Check(pyobj))
+ return (SwigPyObject*) pyobj;
+ }
+# endif
+ return NULL;
+#else
+
+ obj = 0;
+
+#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
+ if (PyInstance_Check(pyobj)) {
+ obj = _PyInstance_Lookup(pyobj, SWIG_This());
+ } else {
+ PyObject **dictptr = _PyObject_GetDictPtr(pyobj);
+ if (dictptr != NULL) {
+ PyObject *dict = *dictptr;
+ obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0;
+ } else {
+#ifdef PyWeakref_CheckProxy
+ if (PyWeakref_CheckProxy(pyobj)) {
+ PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
+ return wobj ? SWIG_Python_GetSwigThis(wobj) : 0;
+ }
+#endif
+ obj = PyObject_GetAttr(pyobj,SWIG_This());
+ if (obj) {
+ Py_DECREF(obj);
+ } else {
+ if (PyErr_Occurred()) PyErr_Clear();
+ return 0;
+ }
+ }
+ }
+#else
+ obj = PyObject_GetAttr(pyobj,SWIG_This());
+ if (obj) {
+ Py_DECREF(obj);
+ } else {
+ if (PyErr_Occurred()) PyErr_Clear();
+ return 0;
+ }
+#endif
+ if (obj && !SwigPyObject_Check(obj)) {
+ /* a PyObject is called 'this', try to get the 'real this'
+ SwigPyObject from it */
+ return SWIG_Python_GetSwigThis(obj);
+ }
+ return (SwigPyObject *)obj;
+#endif
+}
+
+/* Acquire a pointer value */
+
+SWIGRUNTIME int
+SWIG_Python_AcquirePtr(PyObject *obj, int own) {
+ if (own == SWIG_POINTER_OWN) {
+ SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj);
+ if (sobj) {
+ int oldown = sobj->own;
+ sobj->own = own;
+ return oldown;
+ }
+ }
+ return 0;
+}
+
+/* Convert a pointer value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
+ int res;
+ SwigPyObject *sobj;
+ int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0;
+
+ if (!obj)
+ return SWIG_ERROR;
+ if (obj == Py_None && !implicit_conv) {
+ if (ptr)
+ *ptr = 0;
+ return SWIG_OK;
+ }
+
+ res = SWIG_ERROR;
+
+ sobj = SWIG_Python_GetSwigThis(obj);
+ if (own)
+ *own = 0;
+ while (sobj) {
+ void *vptr = sobj->ptr;
+ if (ty) {
+ swig_type_info *to = sobj->ty;
+ if (to == ty) {
+ /* no type cast needed */
+ if (ptr) *ptr = vptr;
+ break;
+ } else {
+ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
+ if (!tc) {
+ sobj = (SwigPyObject *)sobj->next;
+ } else {
+ if (ptr) {
+ int newmemory = 0;
+ *ptr = SWIG_TypeCast(tc,vptr,&newmemory);
+ if (newmemory == SWIG_CAST_NEW_MEMORY) {
+ assert(own); /* badly formed typemap which will lead to a memory leak - it must set and use own to delete *ptr */
+ if (own)
+ *own = *own | SWIG_CAST_NEW_MEMORY;
+ }
+ }
+ break;
+ }
+ }
+ } else {
+ if (ptr) *ptr = vptr;
+ break;
+ }
+ }
+ if (sobj) {
+ if (own)
+ *own = *own | sobj->own;
+ if (flags & SWIG_POINTER_DISOWN) {
+ sobj->own = 0;
+ }
+ res = SWIG_OK;
+ } else {
+ if (implicit_conv) {
+ SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
+ if (data && !data->implicitconv) {
+ PyObject *klass = data->klass;
+ if (klass) {
+ PyObject *impconv;
+ data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/
+ impconv = SWIG_Python_CallFunctor(klass, obj);
+ data->implicitconv = 0;
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ impconv = 0;
+ }
+ if (impconv) {
+ SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv);
+ if (iobj) {
+ void *vptr;
+ res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0);
+ if (SWIG_IsOK(res)) {
+ if (ptr) {
+ *ptr = vptr;
+ /* transfer the ownership to 'ptr' */
+ iobj->own = 0;
+ res = SWIG_AddCast(res);
+ res = SWIG_AddNewMask(res);
+ } else {
+ res = SWIG_AddCast(res);
+ }
+ }
+ }
+ Py_DECREF(impconv);
+ }
+ }
+ }
+ }
+ if (!SWIG_IsOK(res) && obj == Py_None) {
+ if (ptr)
+ *ptr = 0;
+ if (PyErr_Occurred())
+ PyErr_Clear();
+ res = SWIG_OK;
+ }
+ }
+ return res;
+}
+
+/* Convert a function ptr value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) {
+ if (!PyCFunction_Check(obj)) {
+ return SWIG_ConvertPtr(obj, ptr, ty, 0);
+ } else {
+ void *vptr = 0;
+
+ /* here we get the method pointer for callbacks */
+ const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);
+ const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0;
+ if (desc)
+ desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0;
+ if (!desc)
+ return SWIG_ERROR;
+ if (ty) {
+ swig_cast_info *tc = SWIG_TypeCheck(desc,ty);
+ if (tc) {
+ int newmemory = 0;
+ *ptr = SWIG_TypeCast(tc,vptr,&newmemory);
+ assert(!newmemory); /* newmemory handling not yet implemented */
+ } else {
+ return SWIG_ERROR;
+ }
+ } else {
+ *ptr = vptr;
+ }
+ return SWIG_OK;
+ }
+}
+
+/* Convert a packed value value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) {
+ swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz);
+ if (!to) return SWIG_ERROR;
+ if (ty) {
+ if (to != ty) {
+ /* check type cast? */
+ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
+ if (!tc) return SWIG_ERROR;
+ }
+ }
+ return SWIG_OK;
+}
+
+/* -----------------------------------------------------------------------------
+ * Create a new pointer object
+ * ----------------------------------------------------------------------------- */
+
+/*
+ Create a new instance object, without calling __init__, and set the
+ 'this' attribute.
+*/
+
+SWIGRUNTIME PyObject*
+SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
+{
+#if (PY_VERSION_HEX >= 0x02020000)
+ PyObject *inst = 0;
+ PyObject *newraw = data->newraw;
+ if (newraw) {
+ inst = PyObject_Call(newraw, data->newargs, NULL);
+ if (inst) {
+#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
+ PyObject **dictptr = _PyObject_GetDictPtr(inst);
+ if (dictptr != NULL) {
+ PyObject *dict = *dictptr;
+ if (dict == NULL) {
+ dict = PyDict_New();
+ *dictptr = dict;
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ }
+ }
+#else
+ PyObject *key = SWIG_This();
+ PyObject_SetAttr(inst, key, swig_this);
+#endif
+ }
+ } else {
+#if PY_VERSION_HEX >= 0x03000000
+ inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None);
+ if (inst) {
+ PyObject_SetAttr(inst, SWIG_This(), swig_this);
+ Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
+ }
+#else
+ PyObject *dict = PyDict_New();
+ if (dict) {
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ inst = PyInstance_NewRaw(data->newargs, dict);
+ Py_DECREF(dict);
+ }
+#endif
+ }
+ return inst;
+#else
+#if (PY_VERSION_HEX >= 0x02010000)
+ PyObject *inst = 0;
+ PyObject *dict = PyDict_New();
+ if (dict) {
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ inst = PyInstance_NewRaw(data->newargs, dict);
+ Py_DECREF(dict);
+ }
+ return (PyObject *) inst;
+#else
+ PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type);
+ if (inst == NULL) {
+ return NULL;
+ }
+ inst->in_class = (PyClassObject *)data->newargs;
+ Py_INCREF(inst->in_class);
+ inst->in_dict = PyDict_New();
+ if (inst->in_dict == NULL) {
+ Py_DECREF(inst);
+ return NULL;
+ }
+#ifdef Py_TPFLAGS_HAVE_WEAKREFS
+ inst->in_weakreflist = NULL;
+#endif
+#ifdef Py_TPFLAGS_GC
+ PyObject_GC_Init(inst);
+#endif
+ PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this);
+ return (PyObject *) inst;
+#endif
+#endif
+}
+
+SWIGRUNTIME void
+SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)
+{
+ PyObject *dict;
+#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
+ PyObject **dictptr = _PyObject_GetDictPtr(inst);
+ if (dictptr != NULL) {
+ dict = *dictptr;
+ if (dict == NULL) {
+ dict = PyDict_New();
+ *dictptr = dict;
+ }
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ return;
+ }
+#endif
+ dict = PyObject_GetAttrString(inst, (char*)"__dict__");
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ Py_DECREF(dict);
+}
+
+
+SWIGINTERN PyObject *
+SWIG_Python_InitShadowInstance(PyObject *args) {
+ PyObject *obj[2];
+ if (!SWIG_Python_UnpackTuple(args, "swiginit", 2, 2, obj)) {
+ return NULL;
+ } else {
+ SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]);
+ if (sthis) {
+ SwigPyObject_append((PyObject*) sthis, obj[1]);
+ } else {
+ SWIG_Python_SetSwigThis(obj[0], obj[1]);
+ }
+ return SWIG_Py_Void();
+ }
+}
+
+/* Create a new pointer object */
+
+SWIGRUNTIME PyObject *
+SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags) {
+ SwigPyClientData *clientdata;
+ PyObject * robj;
+ int own;
+
+ if (!ptr)
+ return SWIG_Py_Void();
+
+ clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0;
+ own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0;
+ if (clientdata && clientdata->pytype) {
+ SwigPyObject *newobj;
+ if (flags & SWIG_BUILTIN_TP_INIT) {
+ newobj = (SwigPyObject*) self;
+ if (newobj->ptr) {
+ PyObject *next_self = clientdata->pytype->tp_alloc(clientdata->pytype, 0);
+ while (newobj->next)
+ newobj = (SwigPyObject *) newobj->next;
+ newobj->next = next_self;
+ newobj = (SwigPyObject *)next_self;
+ }
+ } else {
+ newobj = PyObject_New(SwigPyObject, clientdata->pytype);
+ }
+ if (newobj) {
+ newobj->ptr = ptr;
+ newobj->ty = type;
+ newobj->own = own;
+ newobj->next = 0;
+#ifdef SWIGPYTHON_BUILTIN
+ newobj->dict = 0;
+#endif
+ return (PyObject*) newobj;
+ }
+ return SWIG_Py_Void();
+ }
+
+ assert(!(flags & SWIG_BUILTIN_TP_INIT));
+
+ robj = SwigPyObject_New(ptr, type, own);
+ if (robj && clientdata && !(flags & SWIG_POINTER_NOSHADOW)) {
+ PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj);
+ Py_DECREF(robj);
+ robj = inst;
+ }
+ return robj;
+}
+
+/* Create a new packed object */
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {
+ return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void();
+}
+
+/* -----------------------------------------------------------------------------*
+ * Get type list
+ * -----------------------------------------------------------------------------*/
+
+#ifdef SWIG_LINK_RUNTIME
+void *SWIG_ReturnGlobalTypeList(void *);
+#endif
+
+SWIGRUNTIME swig_module_info *
+SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata)) {
+ static void *type_pointer = (void *)0;
+ /* first check if module already created */
+ if (!type_pointer) {
+#ifdef SWIG_LINK_RUNTIME
+ type_pointer = SWIG_ReturnGlobalTypeList((void *)0);
+#else
+# ifdef SWIGPY_USE_CAPSULE
+ type_pointer = PyCapsule_Import(SWIGPY_CAPSULE_NAME, 0);
+# else
+ type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION,
+ (char*)"type_pointer" SWIG_TYPE_TABLE_NAME);
+# endif
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ type_pointer = (void *)0;
+ }
+#endif
+ }
+ return (swig_module_info *) type_pointer;
+}
+
+#if PY_MAJOR_VERSION < 2
+/* PyModule_AddObject function was introduced in Python 2.0. The following function
+ is copied out of Python/modsupport.c in python version 2.3.4 */
+SWIGINTERN int
+PyModule_AddObject(PyObject *m, char *name, PyObject *o)
+{
+ PyObject *dict;
+ if (!PyModule_Check(m)) {
+ PyErr_SetString(PyExc_TypeError,
+ "PyModule_AddObject() needs module as first arg");
+ return SWIG_ERROR;
+ }
+ if (!o) {
+ PyErr_SetString(PyExc_TypeError,
+ "PyModule_AddObject() needs non-NULL value");
+ return SWIG_ERROR;
+ }
+
+ dict = PyModule_GetDict(m);
+ if (dict == NULL) {
+ /* Internal error -- modules must have a dict! */
+ PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__",
+ PyModule_GetName(m));
+ return SWIG_ERROR;
+ }
+ if (PyDict_SetItemString(dict, name, o))
+ return SWIG_ERROR;
+ Py_DECREF(o);
+ return SWIG_OK;
+}
+#endif
+
+SWIGRUNTIME void
+#ifdef SWIGPY_USE_CAPSULE
+SWIG_Python_DestroyModule(PyObject *obj)
+#else
+SWIG_Python_DestroyModule(void *vptr)
+#endif
+{
+#ifdef SWIGPY_USE_CAPSULE
+ swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME);
+#else
+ swig_module_info *swig_module = (swig_module_info *) vptr;
+#endif
+ swig_type_info **types = swig_module->types;
+ size_t i;
+ for (i =0; i < swig_module->size; ++i) {
+ swig_type_info *ty = types[i];
+ if (ty->owndata) {
+ SwigPyClientData *data = (SwigPyClientData *) ty->clientdata;
+ if (data) SwigPyClientData_Del(data);
+ }
+ }
+ Py_DECREF(SWIG_This());
+ swig_this = NULL;
+}
+
+SWIGRUNTIME void
+SWIG_Python_SetModule(swig_module_info *swig_module) {
+#if PY_VERSION_HEX >= 0x03000000
+ /* Add a dummy module object into sys.modules */
+ PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION);
+#else
+ static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} }; /* Sentinel */
+ PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table);
+#endif
+#ifdef SWIGPY_USE_CAPSULE
+ PyObject *pointer = PyCapsule_New((void *) swig_module, SWIGPY_CAPSULE_NAME, SWIG_Python_DestroyModule);
+ if (pointer && module) {
+ PyModule_AddObject(module, (char*)"type_pointer_capsule" SWIG_TYPE_TABLE_NAME, pointer);
+ } else {
+ Py_XDECREF(pointer);
+ }
+#else
+ PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule);
+ if (pointer && module) {
+ PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer);
+ } else {
+ Py_XDECREF(pointer);
+ }
+#endif
+}
+
+/* The python cached type query */
+SWIGRUNTIME PyObject *
+SWIG_Python_TypeCache(void) {
+ static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New();
+ return cache;
+}
+
+SWIGRUNTIME swig_type_info *
+SWIG_Python_TypeQuery(const char *type)
+{
+ PyObject *cache = SWIG_Python_TypeCache();
+ PyObject *key = SWIG_Python_str_FromChar(type);
+ PyObject *obj = PyDict_GetItem(cache, key);
+ swig_type_info *descriptor;
+ if (obj) {
+#ifdef SWIGPY_USE_CAPSULE
+ descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, NULL);
+#else
+ descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj);
+#endif
+ } else {
+ swig_module_info *swig_module = SWIG_GetModule(0);
+ descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type);
+ if (descriptor) {
+#ifdef SWIGPY_USE_CAPSULE
+ obj = PyCapsule_New((void*) descriptor, NULL, NULL);
+#else
+ obj = PyCObject_FromVoidPtr(descriptor, NULL);
+#endif
+ PyDict_SetItem(cache, key, obj);
+ Py_DECREF(obj);
+ }
+ }
+ Py_DECREF(key);
+ return descriptor;
+}
+
+/*
+ For backward compatibility only
+*/
+#define SWIG_POINTER_EXCEPTION 0
+#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
+#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
+
+SWIGRUNTIME int
+SWIG_Python_AddErrMesg(const char* mesg, int infront)
+{
+ if (PyErr_Occurred()) {
+ PyObject *type = 0;
+ PyObject *value = 0;
+ PyObject *traceback = 0;
+ PyErr_Fetch(&type, &value, &traceback);
+ if (value) {
+ char *tmp;
+ PyObject *old_str = PyObject_Str(value);
+ Py_XINCREF(type);
+ PyErr_Clear();
+ if (infront) {
+ PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str));
+ } else {
+ PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg);
+ }
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(old_str);
+ }
+ return 1;
+ } else {
+ return 0;
+ }
+}
+
+SWIGRUNTIME int
+SWIG_Python_ArgFail(int argnum)
+{
+ if (PyErr_Occurred()) {
+ /* add information about failing argument */
+ char mesg[256];
+ PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum);
+ return SWIG_Python_AddErrMesg(mesg, 1);
+ } else {
+ return 0;
+ }
+}
+
+SWIGRUNTIMEINLINE const char *
+SwigPyObject_GetDesc(PyObject *self)
+{
+ SwigPyObject *v = (SwigPyObject *)self;
+ swig_type_info *ty = v ? v->ty : 0;
+ return ty ? ty->str : "";
+}
+
+SWIGRUNTIME void
+SWIG_Python_TypeError(const char *type, PyObject *obj)
+{
+ if (type) {
+#if defined(SWIG_COBJECT_TYPES)
+ if (obj && SwigPyObject_Check(obj)) {
+ const char *otype = (const char *) SwigPyObject_GetDesc(obj);
+ if (otype) {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received",
+ type, otype);
+ return;
+ }
+ } else
+#endif
+ {
+ const char *otype = (obj ? obj->ob_type->tp_name : 0);
+ if (otype) {
+ PyObject *str = PyObject_Str(obj);
+ const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0;
+ if (cstr) {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received",
+ type, otype, cstr);
+ SWIG_Python_str_DelForPy3(cstr);
+ } else {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received",
+ type, otype);
+ }
+ Py_XDECREF(str);
+ return;
+ }
+ }
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected", type);
+ } else {
+ PyErr_Format(PyExc_TypeError, "unexpected type is received");
+ }
+}
+
+
+/* Convert a pointer value, signal an exception on a type mismatch */
+SWIGRUNTIME void *
+SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags) {
+ void *result;
+ if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) {
+ PyErr_Clear();
+#if SWIG_POINTER_EXCEPTION
+ if (flags) {
+ SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj);
+ SWIG_Python_ArgFail(argnum);
+ }
+#endif
+ }
+ return result;
+}
+
+#ifdef SWIGPYTHON_BUILTIN
+SWIGRUNTIME int
+SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
+ PyTypeObject *tp = obj->ob_type;
+ PyObject *descr;
+ PyObject *encoded_name;
+ descrsetfunc f;
+ int res = -1;
+
+# ifdef Py_USING_UNICODE
+ if (PyString_Check(name)) {
+ name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL);
+ if (!name)
+ return -1;
+ } else if (!PyUnicode_Check(name))
+# else
+ if (!PyString_Check(name))
+# endif
+ {
+ PyErr_Format(PyExc_TypeError, "attribute name must be string, not '%.200s'", name->ob_type->tp_name);
+ return -1;
+ } else {
+ Py_INCREF(name);
+ }
+
+ if (!tp->tp_dict) {
+ if (PyType_Ready(tp) < 0)
+ goto done;
+ }
+
+ descr = _PyType_Lookup(tp, name);
+ f = NULL;
+ if (descr != NULL)
+ f = descr->ob_type->tp_descr_set;
+ if (!f) {
+ if (PyString_Check(name)) {
+ encoded_name = name;
+ Py_INCREF(name);
+ } else {
+ encoded_name = PyUnicode_AsUTF8String(name);
+ }
+ PyErr_Format(PyExc_AttributeError, "'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name));
+ Py_DECREF(encoded_name);
+ } else {
+ res = f(descr, obj, value);
+ }
+
+ done:
+ Py_DECREF(name);
+ return res;
+}
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+
+
+#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
+
+#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
+
+
+
+ #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0)
+
+
+/* -------- TYPES TABLE (BEGIN) -------- */
+
+#define SWIGTYPE_p_Config swig_types[0]
+#define SWIGTYPE_p_Decoder swig_types[1]
+#define SWIGTYPE_p_Feature swig_types[2]
+#define SWIGTYPE_p_FrontEnd swig_types[3]
+#define SWIGTYPE_p_FsgModel swig_types[4]
+#define SWIGTYPE_p_Hypothesis swig_types[5]
+#define SWIGTYPE_p_Lattice swig_types[6]
+#define SWIGTYPE_p_LogMath swig_types[7]
+#define SWIGTYPE_p_NBest swig_types[8]
+#define SWIGTYPE_p_NBestIterator swig_types[9]
+#define SWIGTYPE_p_NBestList swig_types[10]
+#define SWIGTYPE_p_NGramModel swig_types[11]
+#define SWIGTYPE_p_Segment swig_types[12]
+#define SWIGTYPE_p_SegmentIterator swig_types[13]
+#define SWIGTYPE_p_SegmentList swig_types[14]
+#define SWIGTYPE_p_char swig_types[15]
+#define SWIGTYPE_p_int swig_types[16]
+#define SWIGTYPE_p_ps_nbest_t swig_types[17]
+#define SWIGTYPE_p_ps_seg_t swig_types[18]
+static swig_type_info *swig_types[20];
+static swig_module_info swig_module = {swig_types, 19, 0, 0, 0, 0};
+#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
+#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
+
+/* -------- TYPES TABLE (END) -------- */
+
+#if (PY_VERSION_HEX <= 0x02000000)
+# if !defined(SWIG_PYTHON_CLASSIC)
+# error "This python version requires swig to be run with the '-classic' option"
+# endif
+#endif
+
+/*-----------------------------------------------
+ @(target):= _pocketsphinx.so
+ ------------------------------------------------*/
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_init PyInit__pocketsphinx
+
+#else
+# define SWIG_init init_pocketsphinx
+
+#endif
+#define SWIG_name "_pocketsphinx"
+
+#define SWIGVERSION 0x020011
+#define SWIG_VERSION SWIGVERSION
+
+
+#define SWIG_as_voidptr(a) (void *)((const void *)(a))
+#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
+
+
+typedef cmd_ln_t Config;
+typedef feat_t Feature;
+typedef fe_t FrontEnd;
+typedef fsg_model_t FsgModel;
+typedef logmath_t LogMath;
+typedef ngram_model_t NGramModel;
+typedef ngram_model_t NGramModelSet;
+
+
+
+// TODO: make private with %immutable
+typedef struct {
+ char *hypstr;
+ int best_score;
+ int prob;
+} Hypothesis;
+
+typedef struct {
+ char *word;
+ int32 ascore;
+ int32 lscore;
+ int32 lback;
+ int32 prob;
+ int start_frame;
+ int end_frame;
+} Segment;
+
+typedef struct {
+ char *hypstr;
+ int32 score;
+} NBest;
+
+
+
+SWIGINTERN swig_type_info*
+SWIG_pchar_descriptor(void)
+{
+ static int init = 0;
+ static swig_type_info* info = 0;
+ if (!init) {
+ info = SWIG_TypeQuery("_p_char");
+ init = 1;
+ }
+ return info;
+}
+
+
+SWIGINTERN int
+SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)
+{
+#if PY_VERSION_HEX>=0x03000000
+ if (PyUnicode_Check(obj))
+#else
+ if (PyString_Check(obj))
+#endif
+ {
+ char *cstr; Py_ssize_t len;
+#if PY_VERSION_HEX>=0x03000000
+ if (!alloc && cptr) {
+ /* We can't allow converting without allocation, since the internal
+ representation of string in Python 3 is UCS-2/UCS-4 but we require
+ a UTF-8 representation.
+ TODO(bhy) More detailed explanation */
+ return SWIG_RuntimeError;
+ }
+ obj = PyUnicode_AsUTF8String(obj);
+ PyBytes_AsStringAndSize(obj, &cstr, &len);
+ if(alloc) *alloc = SWIG_NEWOBJ;
+#else
+ PyString_AsStringAndSize(obj, &cstr, &len);
+#endif
+ if (cptr) {
+ if (alloc) {
+ /*
+ In python the user should not be able to modify the inner
+ string representation. To warranty that, if you define
+ SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string
+ buffer is always returned.
+
+ The default behavior is just to return the pointer value,
+ so, be careful.
+ */
+#if defined(SWIG_PYTHON_SAFE_CSTRINGS)
+ if (*alloc != SWIG_OLDOBJ)
+#else
+ if (*alloc == SWIG_NEWOBJ)
+#endif
+ {
+ *cptr = (char *)memcpy((char *)malloc((len + 1)*sizeof(char)), cstr, sizeof(char)*(len + 1));
+ *alloc = SWIG_NEWOBJ;
+ }
+ else {
+ *cptr = cstr;
+ *alloc = SWIG_OLDOBJ;
+ }
+ } else {
+ #if PY_VERSION_HEX>=0x03000000
+ assert(0); /* Should never reach here in Python 3 */
+ #endif
+ *cptr = SWIG_Python_str_AsChar(obj);
+ }
+ }
+ if (psize) *psize = len + 1;
+#if PY_VERSION_HEX>=0x03000000
+ Py_XDECREF(obj);
+#endif
+ return SWIG_OK;
+ } else {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ if (pchar_descriptor) {
+ void* vptr = 0;
+ if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) {
+ if (cptr) *cptr = (char *) vptr;
+ if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0;
+ if (alloc) *alloc = SWIG_OLDOBJ;
+ return SWIG_OK;
+ }
+ }
+ }
+ return SWIG_TypeError;
+}
+
+
+
+
+
+SWIGINTERNINLINE PyObject *
+SWIG_FromCharPtrAndSize(const char* carray, size_t size)
+{
+ if (carray) {
+ if (size > INT_MAX) {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ return pchar_descriptor ?
+ SWIG_InternalNewPointerObj((char *)(carray), pchar_descriptor, 0) : SWIG_Py_Void();
+ } else {
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_FromStringAndSize(carray, (int)(size));
+#else
+ return PyString_FromStringAndSize(carray, (int)(size));
+#endif
+ }
+ } else {
+ return SWIG_Py_Void();
+ }
+}
+
+
+SWIGINTERNINLINE PyObject *
+SWIG_FromCharPtr(const char *cptr)
+{
+ return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0));
+}
+
+
+#include
+#if !defined(SWIG_NO_LLONG_MAX)
+# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__)
+# define LLONG_MAX __LONG_LONG_MAX__
+# define LLONG_MIN (-LLONG_MAX - 1LL)
+# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
+# endif
+#endif
+
+
+SWIGINTERN int
+SWIG_AsVal_double (PyObject *obj, double *val)
+{
+ int res = SWIG_TypeError;
+ if (PyFloat_Check(obj)) {
+ if (val) *val = PyFloat_AsDouble(obj);
+ return SWIG_OK;
+ } else if (PyInt_Check(obj)) {
+ if (val) *val = PyInt_AsLong(obj);
+ return SWIG_OK;
+ } else if (PyLong_Check(obj)) {
+ double v = PyLong_AsDouble(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ double d = PyFloat_AsDouble(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = d;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_AddCast(SWIG_OK));
+ } else {
+ PyErr_Clear();
+ }
+ }
+ }
+#endif
+ return res;
+}
+
+
+#include
+
+
+#include
+
+
+SWIGINTERNINLINE int
+SWIG_CanCastAsInteger(double *d, double min, double max) {
+ double x = *d;
+ if ((min <= x && x <= max)) {
+ double fx = floor(x);
+ double cx = ceil(x);
+ double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */
+ if ((errno == EDOM) || (errno == ERANGE)) {
+ errno = 0;
+ } else {
+ double summ, reps, diff;
+ if (rd < x) {
+ diff = x - rd;
+ } else if (rd > x) {
+ diff = rd - x;
+ } else {
+ return 1;
+ }
+ summ = rd + x;
+ reps = diff/summ;
+ if (reps < 8*DBL_EPSILON) {
+ *d = rd;
+ return 1;
+ }
+ }
+ }
+ return 0;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_long (PyObject *obj, long* val)
+{
+ if (PyInt_Check(obj)) {
+ if (val) *val = PyInt_AsLong(obj);
+ return SWIG_OK;
+ } else if (PyLong_Check(obj)) {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ long v = PyInt_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) {
+ if (val) *val = (long)(d);
+ return res;
+ }
+ }
+ }
+#endif
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_int (PyObject * obj, int *val)
+{
+ long v;
+ int res = SWIG_AsVal_long (obj, &v);
+ if (SWIG_IsOK(res)) {
+ if ((v < INT_MIN || v > INT_MAX)) {
+ return SWIG_OverflowError;
+ } else {
+ if (val) *val = (int)(v);
+ }
+ }
+ return res;
+}
+
+
+SWIGINTERNINLINE PyObject*
+ SWIG_From_int (int value)
+{
+ return PyInt_FromLong((long) value);
+}
+
+SWIGINTERN Hypothesis *new_Hypothesis(char const *hypstr,int best_score,int prob){
+ Hypothesis *h = (Hypothesis *)ckd_malloc(sizeof *h);
+ if (hypstr)
+ h->hypstr = ckd_salloc(hypstr);
+ else
+ h->hypstr = NULL;
+ h->best_score = best_score;
+ h->prob = prob;
+ return h;
+ }
+SWIGINTERN void delete_Hypothesis(Hypothesis *self){
+ if (self->hypstr)
+ ckd_free(self->hypstr);
+ ckd_free(self);
+ }
+SWIGINTERN Segment *Segment_fromIter(ps_seg_t *itor){
+ Segment *seg;
+ if (!itor)
+ return NULL;
+ seg = (Segment *)ckd_malloc(sizeof(Segment));
+ seg->word = ckd_salloc(ps_seg_word(itor));
+ seg->prob = ps_seg_prob(itor, &(seg->ascore), &(seg->lscore), &(seg->lback));
+ ps_seg_frames(itor, &seg->start_frame, &seg->end_frame);
+ return seg;
+ }
+SWIGINTERN void delete_Segment(Segment *self){
+ ckd_free(self->word);
+ ckd_free(self);
+ }
+SWIGINTERN NBest *NBest_fromIter(ps_nbest_t *itor){
+ NBest *nbest;
+ if (!itor)
+ return NULL;
+ nbest = (NBest *)ckd_malloc(sizeof(NBest));
+ nbest->hypstr = ckd_salloc(ps_nbest_hyp(itor, &(nbest->score)));
+ return nbest;
+ }
+SWIGINTERN Hypothesis *NBest_hyp(NBest *self){
+ return self->hypstr ? new_Hypothesis(self->hypstr, self->score, 0) : NULL;
+ }
+SWIGINTERN void delete_NBest(NBest *self){
+ ckd_free(self->hypstr);
+ ckd_free(self);
+ }
+
+typedef struct {
+ ps_seg_t *ptr;
+} SegmentIterator;
+
+SWIGINTERN SegmentIterator *new_SegmentIterator(ps_seg_t *ptr){
+ SegmentIterator *iter = (SegmentIterator *)ckd_malloc(sizeof *iter);
+ iter->ptr = ptr;
+ return iter;
+ }
+SWIGINTERN void delete_SegmentIterator(SegmentIterator *self){
+ if (self->ptr)
+ ps_seg_free(self->ptr);
+ ckd_free(self);
+ }
+SWIGINTERN Segment *SegmentIterator_next(SegmentIterator *self){
+ if (self->ptr) {
+ Segment *value =Segment_fromIter(self->ptr);
+ self->ptr =ps_seg_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN Segment *SegmentIterator___next__(SegmentIterator *self){
+ if (self->ptr) {
+ Segment *value =Segment_fromIter(self->ptr);
+ self->ptr =ps_seg_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+
+typedef struct {
+ ps_nbest_t *ptr;
+} NBestIterator;
+
+SWIGINTERN NBestIterator *new_NBestIterator(ps_nbest_t *ptr){
+ NBestIterator *iter = (NBestIterator *)ckd_malloc(sizeof *iter);
+ iter->ptr = ptr;
+ return iter;
+ }
+SWIGINTERN void delete_NBestIterator(NBestIterator *self){
+ if (self->ptr)
+ ps_nbest_free(self->ptr);
+ ckd_free(self);
+ }
+SWIGINTERN NBest *NBestIterator_next(NBestIterator *self){
+ if (self->ptr) {
+ NBest *value =NBest_fromIter(self->ptr);
+ self->ptr =ps_nbest_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN NBest *NBestIterator___next__(NBestIterator *self){
+ if (self->ptr) {
+ NBest *value =NBest_fromIter(self->ptr);
+ self->ptr =ps_nbest_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN Decoder *new_Decoder__SWIG_0(int *errcode){
+ Decoder *d = ps_init(cmd_ln_init(NULL, ps_args(), FALSE, NULL));
+ *errcode = d ? 0 : -1;
+ return d;
+ }
+SWIGINTERN Decoder *new_Decoder__SWIG_1(Config *config,int *errcode){
+ Decoder *d = ps_init(config);
+ *errcode = d ? 0 : -1;
+ return d;
+ }
+SWIGINTERN void delete_Decoder(Decoder *self){
+ ps_free(self);
+ }
+SWIGINTERN void Decoder_reinit(Decoder *self,Config *config,int *errcode){
+ *errcode = ps_reinit(self, config);
+ }
+SWIGINTERN void Decoder_load_dict(Decoder *self,char const *fdict,char const *ffilter,char const *format,int *errcode){
+ *errcode = ps_load_dict(self, fdict, ffilter, format);
+ }
+SWIGINTERN void Decoder_save_dict(Decoder *self,char const *dictfile,char const *format,int *errcode){
+ *errcode = ps_save_dict(self, dictfile, format);
+ }
+SWIGINTERN void Decoder_add_word(Decoder *self,char const *word,char const *phones,int update,int *errcode){
+ *errcode = ps_add_word(self, word, phones, update);
+ }
+SWIGINTERN char *Decoder_lookup_word(Decoder *self,char const *word){
+ return ps_lookup_word(self, word);
+ }
+SWIGINTERN Lattice *Decoder_get_lattice(Decoder *self){
+ return ps_lattice_retain(ps_get_lattice(self));
+ }
+SWIGINTERN Config *Decoder_get_config(Decoder *self){
+ return cmd_ln_retain(ps_get_config(self));
+ }
+SWIGINTERN Config *Decoder_default_config(void){
+ return cmd_ln_parse_r(NULL, ps_args(), 0, NULL, FALSE);
+ }
+SWIGINTERN Config *Decoder_file_config(char const *path){
+ return cmd_ln_parse_file_r(NULL, ps_args(), path, FALSE);
+ }
+SWIGINTERN void Decoder_start_stream(Decoder *self,int *errcode){
+ *errcode = ps_start_stream(self);
+ }
+SWIGINTERN void Decoder_start_utt(Decoder *self,int *errcode){
+ *errcode = ps_start_utt(self);
+ }
+SWIGINTERN void Decoder_end_utt(Decoder *self,int *errcode){
+ *errcode = ps_end_utt(self);
+ }
+
+SWIGINTERN int
+SWIG_AsVal_bool (PyObject *obj, bool *val)
+{
+ int r = PyObject_IsTrue(obj);
+ if (r == -1)
+ return SWIG_ERROR;
+ if (val) *val = r ? true : false;
+ return SWIG_OK;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val)
+{
+#if PY_VERSION_HEX < 0x03000000
+ if (PyInt_Check(obj)) {
+ long v = PyInt_AsLong(obj);
+ if (v >= 0) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ return SWIG_OverflowError;
+ }
+ } else
+#endif
+ if (PyLong_Check(obj)) {
+ unsigned long v = PyLong_AsUnsignedLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+#if PY_VERSION_HEX >= 0x03000000
+ {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (v < 0) {
+ return SWIG_OverflowError;
+ }
+ } else {
+ PyErr_Clear();
+ }
+ }
+#endif
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ unsigned long v = PyLong_AsUnsignedLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) {
+ if (val) *val = (unsigned long)(d);
+ return res;
+ }
+ }
+ }
+#endif
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERNINLINE int
+SWIG_AsVal_size_t (PyObject * obj, size_t *val)
+{
+ unsigned long v;
+ int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0);
+ if (SWIG_IsOK(res) && val) *val = (size_t)(v);
+ return res;
+}
+
+SWIGINTERN int Decoder_process_raw(Decoder *self,char const *SDATA,size_t NSAMP,bool no_search,bool full_utt,int *errcode){
+ NSAMP /= sizeof(int16);
+ return *errcode = ps_process_raw(self, (int16 *)SDATA, NSAMP, no_search, full_utt);
+ }
+SWIGINTERN int Decoder_process_cep(Decoder *self,char const *SDATA,size_t NSAMP,bool no_search,bool full_utt,int *errcode){
+ mfcc_t **feats;
+ int ncep = fe_get_output_size(ps_get_fe(self));
+ NSAMP /= ncep * sizeof(mfcc_t);
+ feats = ckd_calloc_2d(NSAMP, ncep, sizeof(mfcc_t));
+ memcpy(feats[0], SDATA, NSAMP * ncep * sizeof(mfcc_t));
+ *errcode = ps_process_cep(self, feats, NSAMP, no_search, full_utt);
+ ckd_free_2d(feats);
+ return *errcode;
+ }
+SWIGINTERN Hypothesis *Decoder_hyp(Decoder *self){
+ char const *hyp;
+ int32 best_score, prob;
+ hyp = ps_get_hyp(self, &best_score);
+ if (hyp)
+ prob = ps_get_prob(self);
+ return hyp ? new_Hypothesis(hyp, best_score, prob) : NULL;
+ }
+SWIGINTERN FrontEnd *Decoder_get_fe(Decoder *self){
+ return ps_get_fe(self);
+ }
+SWIGINTERN Feature *Decoder_get_feat(Decoder *self){
+ return ps_get_feat(self);
+ }
+SWIGINTERN bool Decoder_get_in_speech(Decoder *self){
+ return ps_get_in_speech(self);
+ }
+
+SWIGINTERNINLINE PyObject*
+ SWIG_From_bool (bool value)
+{
+ return PyBool_FromLong(value ? 1 : 0);
+}
+
+SWIGINTERN FsgModel *Decoder_get_fsg(Decoder *self,char const *name){
+ return fsg_model_retain(ps_get_fsg(self, name));
+ }
+SWIGINTERN void Decoder_set_fsg(Decoder *self,char const *name,FsgModel *fsg,int *errcode){
+ *errcode = ps_set_fsg(self, name, fsg);
+ }
+SWIGINTERN void Decoder_set_jsgf_file(Decoder *self,char const *name,char const *path,int *errcode){
+ *errcode = ps_set_jsgf_file(self, name, path);
+ }
+SWIGINTERN void Decoder_set_jsgf_string(Decoder *self,char const *name,char const *jsgf_string,int *errcode){
+ *errcode = ps_set_jsgf_string(self, name, jsgf_string);
+ }
+SWIGINTERN char const *Decoder_get_kws(Decoder *self,char const *name){
+ return ps_get_kws(self, name);
+ }
+SWIGINTERN void Decoder_set_kws(Decoder *self,char const *name,char const *keyfile,int *errcode){
+ *errcode = ps_set_kws(self, name, keyfile);
+ }
+SWIGINTERN void Decoder_set_keyphrase(Decoder *self,char const *name,char const *keyphrase,int *errcode){
+ *errcode = ps_set_keyphrase(self, name, keyphrase);
+ }
+SWIGINTERN void Decoder_set_allphone_file(Decoder *self,char const *name,char const *lmfile,int *errcode){
+ *errcode = ps_set_allphone_file(self, name, lmfile);
+ }
+SWIGINTERN NGramModel *Decoder_get_lm(Decoder *self,char const *name){
+ return ngram_model_retain(ps_get_lm(self, name));
+ }
+SWIGINTERN void Decoder_set_lm(Decoder *self,char const *name,NGramModel *lm,int *errcode){
+ *errcode = ps_set_lm(self, name, lm);
+ }
+SWIGINTERN void Decoder_set_lm_file(Decoder *self,char const *name,char const *path,int *errcode){
+ *errcode = ps_set_lm_file(self, name, path);
+ }
+SWIGINTERN LogMath *Decoder_get_logmath(Decoder *self){
+ return logmath_retain(ps_get_logmath(self));
+ }
+SWIGINTERN void Decoder_set_search(Decoder *self,char const *search_name,int *errcode){
+ *errcode = ps_set_search(self, search_name);
+ }
+SWIGINTERN char const *Decoder_get_search(Decoder *self){
+ return ps_get_search(self);
+ }
+SWIGINTERN int Decoder_n_frames(Decoder *self){
+ return ps_get_n_frames(self);
+ }
+SWIGINTERN SegmentList *Decoder_seg(Decoder *self){
+ return self;
+ }
+SWIGINTERN NBestList *Decoder_nbest(Decoder *self){
+ return self;
+ }
+SWIGINTERN Lattice *new_Lattice__SWIG_0(char const *path){
+ return ps_lattice_read(NULL, path);
+ }
+SWIGINTERN Lattice *new_Lattice__SWIG_1(Decoder *decoder,char *path){
+ return ps_lattice_read(decoder, path);
+ }
+SWIGINTERN void delete_Lattice(Lattice *self){
+ ps_lattice_free(self);
+ }
+SWIGINTERN void Lattice_write(Lattice *self,char const *path,int *errcode){
+ *errcode = ps_lattice_write(self, path);
+ }
+SWIGINTERN void Lattice_write_htk(Lattice *self,char const *path,int *errcode){
+ *errcode = ps_lattice_write_htk(self, path);
+ }
+SWIGINTERN NBestIterator *NBestList___iter__(NBestList *self){
+ return new_NBestIterator(ps_nbest(self));
+ }
+SWIGINTERN SegmentIterator *SegmentList___iter__(SegmentList *self){
+ return new_SegmentIterator(ps_seg_iter(self));
+ }
+#ifdef __cplusplus
+extern "C" {
+#endif
+SWIGINTERN PyObject *_wrap_Hypothesis_hypstr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Hypothesis_hypstr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_hypstr_set" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Hypothesis_hypstr_set" "', argument " "2"" of type '" "char *""'");
+ }
+ arg2 = (char *)(buf2);
+ if (arg1->hypstr) free((char*)arg1->hypstr);
+ if (arg2) {
+ size_t size = strlen((const char *)(arg2)) + 1;
+ arg1->hypstr = (char *)(char *)memcpy((char *)malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size));
+ } else {
+ arg1->hypstr = 0;
+ }
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_hypstr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Hypothesis_hypstr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_hypstr_get" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ result = (char *) ((arg1)->hypstr);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_best_score_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Hypothesis_best_score_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_best_score_set" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Hypothesis_best_score_set" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ if (arg1) (arg1)->best_score = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_best_score_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Hypothesis_best_score_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_best_score_get" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ result = (int) ((arg1)->best_score);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_prob_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Hypothesis_prob_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_prob_set" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Hypothesis_prob_set" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ if (arg1) (arg1)->prob = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Hypothesis_prob_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Hypothesis_prob_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Hypothesis_prob_get" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ result = (int) ((arg1)->prob);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Hypothesis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int arg2 ;
+ int arg3 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ Hypothesis *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:new_Hypothesis",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Hypothesis" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "new_Hypothesis" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_Hypothesis" "', argument " "3"" of type '" "int""'");
+ }
+ arg3 = (int)(val3);
+ result = (Hypothesis *)new_Hypothesis((char const *)arg1,arg2,arg3);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Hypothesis, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Hypothesis(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Hypothesis *arg1 = (Hypothesis *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Hypothesis",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Hypothesis, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Hypothesis" "', argument " "1"" of type '" "Hypothesis *""'");
+ }
+ arg1 = (Hypothesis *)(argp1);
+ delete_Hypothesis(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Hypothesis_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Hypothesis, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_Segment_word_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_word_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_word_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Segment_word_set" "', argument " "2"" of type '" "char *""'");
+ }
+ arg2 = (char *)(buf2);
+ if (arg1->word) free((char*)arg1->word);
+ if (arg2) {
+ size_t size = strlen((const char *)(arg2)) + 1;
+ arg1->word = (char *)(char *)memcpy((char *)malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size));
+ } else {
+ arg1->word = 0;
+ }
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_word_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_word_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_word_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = (char *) ((arg1)->word);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_ascore_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_ascore_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_ascore_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_ascore_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->ascore = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_ascore_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_ascore_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_ascore_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = ((arg1)->ascore);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_lscore_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_lscore_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_lscore_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_lscore_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->lscore = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_lscore_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_lscore_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_lscore_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = ((arg1)->lscore);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_lback_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_lback_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_lback_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_lback_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->lback = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_lback_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_lback_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_lback_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = ((arg1)->lback);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_prob_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_prob_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_prob_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_prob_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->prob = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_prob_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_prob_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_prob_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = ((arg1)->prob);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_start_frame_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_start_frame_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_start_frame_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_start_frame_set" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ if (arg1) (arg1)->start_frame = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_start_frame_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_start_frame_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_start_frame_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = (int) ((arg1)->start_frame);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_end_frame_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Segment_end_frame_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_end_frame_set" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Segment_end_frame_set" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ if (arg1) (arg1)->end_frame = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_end_frame_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_end_frame_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_end_frame_get" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ result = (int) ((arg1)->end_frame);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Segment_fromIter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ps_seg_t *arg1 = (ps_seg_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Segment *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Segment_fromIter",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ps_seg_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Segment_fromIter" "', argument " "1"" of type '" "ps_seg_t *""'");
+ }
+ arg1 = (ps_seg_t *)(argp1);
+ result = (Segment *)Segment_fromIter(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Segment, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Segment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *arg1 = (Segment *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Segment",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Segment, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Segment" "', argument " "1"" of type '" "Segment *""'");
+ }
+ arg1 = (Segment *)(argp1);
+ delete_Segment(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Segment(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Segment *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":new_Segment")) SWIG_fail;
+ result = (Segment *)calloc(1, sizeof(Segment));
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Segment, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Segment_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Segment, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NBest_hypstr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NBest_hypstr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_hypstr_set" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NBest_hypstr_set" "', argument " "2"" of type '" "char *""'");
+ }
+ arg2 = (char *)(buf2);
+ if (arg1->hypstr) free((char*)arg1->hypstr);
+ if (arg2) {
+ size_t size = strlen((const char *)(arg2)) + 1;
+ arg1->hypstr = (char *)(char *)memcpy((char *)malloc((size)*sizeof(char)), (const char *)(arg2), sizeof(char)*(size));
+ } else {
+ arg1->hypstr = 0;
+ }
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_hypstr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBest_hypstr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_hypstr_get" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ result = (char *) ((arg1)->hypstr);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_score_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ int32 arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NBest_score_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_score_set" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "NBest_score_set" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ if (arg1) (arg1)->score = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_score_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBest_score_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_score_get" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ result = ((arg1)->score);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_fromIter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ps_nbest_t *arg1 = (ps_nbest_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBest *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBest_fromIter",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ps_nbest_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_fromIter" "', argument " "1"" of type '" "ps_nbest_t *""'");
+ }
+ arg1 = (ps_nbest_t *)(argp1);
+ result = (NBest *)NBest_fromIter(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBest, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBest_hyp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Hypothesis *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBest_hyp",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBest_hyp" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ result = (Hypothesis *)NBest_hyp(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Hypothesis, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NBest(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *arg1 = (NBest *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NBest",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBest, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NBest" "', argument " "1"" of type '" "NBest *""'");
+ }
+ arg1 = (NBest *)(argp1);
+ delete_NBest(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NBest(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBest *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":new_NBest")) SWIG_fail;
+ result = (NBest *)calloc(1, sizeof(NBest));
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBest, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NBest_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NBest, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_SegmentIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ ps_seg_t *arg2 = (ps_seg_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:SegmentIterator_ptr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentIterator_ptr_set" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ps_seg_t, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SegmentIterator_ptr_set" "', argument " "2"" of type '" "ps_seg_t *""'");
+ }
+ arg2 = (ps_seg_t *)(argp2);
+ if (arg1) (arg1)->ptr = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_SegmentIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ ps_seg_t *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:SegmentIterator_ptr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentIterator_ptr_get" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ result = (ps_seg_t *) ((arg1)->ptr);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ps_seg_t, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_SegmentIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ps_seg_t *arg1 = (ps_seg_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ SegmentIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_SegmentIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ps_seg_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_SegmentIterator" "', argument " "1"" of type '" "ps_seg_t *""'");
+ }
+ arg1 = (ps_seg_t *)(argp1);
+ result = (SegmentIterator *)new_SegmentIterator(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_SegmentIterator, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_SegmentIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_SegmentIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_SegmentIterator" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ delete_SegmentIterator(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_SegmentIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Segment *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:SegmentIterator_next",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentIterator_next" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (Segment *)SegmentIterator_next(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Segment, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_SegmentIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentIterator *arg1 = (SegmentIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Segment *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:SegmentIterator___next__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentIterator___next__" "', argument " "1"" of type '" "SegmentIterator *""'");
+ }
+ arg1 = (SegmentIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (Segment *)SegmentIterator___next__(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Segment, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *SegmentIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_SegmentIterator, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NBestIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ ps_nbest_t *arg2 = (ps_nbest_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NBestIterator_ptr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestIterator_ptr_set" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ps_nbest_t, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NBestIterator_ptr_set" "', argument " "2"" of type '" "ps_nbest_t *""'");
+ }
+ arg2 = (ps_nbest_t *)(argp2);
+ if (arg1) (arg1)->ptr = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBestIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ ps_nbest_t *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBestIterator_ptr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestIterator_ptr_get" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ result = (ps_nbest_t *) ((arg1)->ptr);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ps_nbest_t, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NBestIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ps_nbest_t *arg1 = (ps_nbest_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBestIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_NBestIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ps_nbest_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NBestIterator" "', argument " "1"" of type '" "ps_nbest_t *""'");
+ }
+ arg1 = (ps_nbest_t *)(argp1);
+ result = (NBestIterator *)new_NBestIterator(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBestIterator, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NBestIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NBestIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NBestIterator" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ delete_NBestIterator(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBestIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBest *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBestIterator_next",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestIterator_next" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (NBest *)NBestIterator_next(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBest, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NBestIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestIterator *arg1 = (NBestIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBest *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBestIterator___next__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestIterator___next__" "', argument " "1"" of type '" "NBestIterator *""'");
+ }
+ arg1 = (NBestIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (NBest *)NBestIterator___next__(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBest, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NBestIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NBestIterator, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_Decoder__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ int *arg1 = (int *) 0 ;
+ Decoder *result = 0 ;
+
+ int errcode;
+ arg1 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)":new_Decoder")) SWIG_fail;
+ result = (Decoder *)new_Decoder__SWIG_0(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Decoder, SWIG_POINTER_NEW | 0 );
+ {
+ if (*arg1 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "new_Decoder returned %d", *arg1);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Decoder__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Decoder *result = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:new_Decoder",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Decoder" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ result = (Decoder *)new_Decoder__SWIG_1(arg1,arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Decoder, SWIG_POINTER_NEW | 0 );
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "new_Decoder returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Decoder(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[2];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 1) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 0) {
+ return _wrap_new_Decoder__SWIG_0(self, args);
+ }
+ if (argc == 1) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Config, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_Decoder__SWIG_1(self, args);
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_Decoder'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " Decoder::Decoder(int *)\n"
+ " Decoder::Decoder(Config *,int *)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Decoder(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Decoder",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Decoder" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ delete_Decoder(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_reinit(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ Config *arg2 = (Config *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_reinit",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_reinit" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_reinit" "', argument " "2"" of type '" "Config *""'");
+ }
+ arg2 = (Config *)(argp2);
+ Decoder_reinit(arg1,arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_reinit returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_load_dict(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ char *arg4 = (char *) 0 ;
+ int *arg5 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int res4 ;
+ char *buf4 = 0 ;
+ int alloc4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+
+ int errcode;
+ arg5 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Decoder_load_dict",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_load_dict" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_load_dict" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_load_dict" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4);
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "Decoder_load_dict" "', argument " "4"" of type '" "char const *""'");
+ }
+ arg4 = (char *)(buf4);
+ Decoder_load_dict(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4,arg5);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg5 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_load_dict returned %d", *arg5);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_save_dict(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_save_dict",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_save_dict" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_save_dict" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_save_dict" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_save_dict(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_save_dict returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_add_word(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int arg4 ;
+ int *arg5 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+
+ int errcode;
+ arg5 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Decoder_add_word",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_add_word" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_add_word" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_add_word" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Decoder_add_word" "', argument " "4"" of type '" "int""'");
+ }
+ arg4 = (int)(val4);
+ Decoder_add_word(arg1,(char const *)arg2,(char const *)arg3,arg4,arg5);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg5 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_add_word returned %d", *arg5);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_lookup_word(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_lookup_word",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_lookup_word" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_lookup_word" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (char *)Decoder_lookup_word(arg1,(char const *)arg2);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ free((char*)result);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_lattice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Lattice *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_lattice",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_lattice" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (Lattice *)Decoder_get_lattice(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Lattice, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Config *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_config",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_config" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (Config *)Decoder_get_config(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Config, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_default_config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":Decoder_default_config")) SWIG_fail;
+ result = (Config *)Decoder_default_config();
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Config, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_file_config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Config *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_file_config",&obj0)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_file_config" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ result = (Config *)Decoder_file_config((char const *)arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Config, SWIG_POINTER_OWN | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_start_stream(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_start_stream",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_start_stream" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ Decoder_start_stream(arg1,arg2);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_start_stream returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_start_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_start_utt",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_start_utt" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ Decoder_start_utt(arg1,arg2);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_start_utt returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_end_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_end_utt",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_end_utt" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ Decoder_end_utt(arg1,arg2);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_end_utt returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_process_raw(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ size_t arg3 ;
+ bool arg4 ;
+ bool arg5 ;
+ int *arg6 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ Py_ssize_t size2 = 0 ;
+ void const *buf2 = 0 ;
+ bool val4 ;
+ int ecode4 = 0 ;
+ bool val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int result;
+
+ int errcode;
+ arg6 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Decoder_process_raw",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_process_raw" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ {
+ res2 = PyObject_AsReadBuffer(obj1, &buf2, &size2);
+ if (res2<0) {
+ PyErr_Clear();
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_process_raw" "', argument " "2"" of type '" "(const char* SDATA, size_t NSAMP)""'");
+ }
+ arg2 = (char *) buf2;
+ arg3 = (size_t) (size2 / sizeof(char const));
+ }
+ ecode4 = SWIG_AsVal_bool(obj2, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Decoder_process_raw" "', argument " "4"" of type '" "bool""'");
+ }
+ arg4 = (bool)(val4);
+ ecode5 = SWIG_AsVal_bool(obj3, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Decoder_process_raw" "', argument " "5"" of type '" "bool""'");
+ }
+ arg5 = (bool)(val5);
+ result = (int)Decoder_process_raw(arg1,(char const *)arg2,arg3,arg4,arg5,arg6);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ if (*arg6 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_process_raw returned %d", *arg6);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_process_cep(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ size_t arg3 ;
+ bool arg4 ;
+ bool arg5 ;
+ int *arg6 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ Py_ssize_t size2 = 0 ;
+ void const *buf2 = 0 ;
+ bool val4 ;
+ int ecode4 = 0 ;
+ bool val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int result;
+
+ int errcode;
+ arg6 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Decoder_process_cep",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_process_cep" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ {
+ res2 = PyObject_AsReadBuffer(obj1, &buf2, &size2);
+ if (res2<0) {
+ PyErr_Clear();
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_process_cep" "', argument " "2"" of type '" "(const char* SDATA, size_t NSAMP)""'");
+ }
+ arg2 = (char *) buf2;
+ arg3 = (size_t) (size2 / sizeof(char const));
+ }
+ ecode4 = SWIG_AsVal_bool(obj2, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Decoder_process_cep" "', argument " "4"" of type '" "bool""'");
+ }
+ arg4 = (bool)(val4);
+ ecode5 = SWIG_AsVal_bool(obj3, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "Decoder_process_cep" "', argument " "5"" of type '" "bool""'");
+ }
+ arg5 = (bool)(val5);
+ result = (int)Decoder_process_cep(arg1,(char const *)arg2,arg3,arg4,arg5,arg6);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ if (*arg6 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_process_cep returned %d", *arg6);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_hyp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Hypothesis *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_hyp",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_hyp" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (Hypothesis *)Decoder_hyp(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Hypothesis, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_fe(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ FrontEnd *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_fe",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_fe" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (FrontEnd *)Decoder_get_fe(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FrontEnd, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_feat(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Feature *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_feat",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_feat" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (Feature *)Decoder_get_feat(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Feature, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_in_speech(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ bool result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_in_speech",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_in_speech" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (bool)Decoder_get_in_speech(arg1);
+ resultobj = SWIG_From_bool((bool)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_fsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_get_fsg",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_fsg" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_get_fsg" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (FsgModel *)Decoder_get_fsg(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_fsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ FsgModel *arg3 = (FsgModel *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_fsg",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_fsg" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_fsg" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_fsg" "', argument " "3"" of type '" "FsgModel *""'");
+ }
+ arg3 = (FsgModel *)(argp3);
+ Decoder_set_fsg(arg1,(char const *)arg2,arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_fsg returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_jsgf_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_jsgf_file",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_jsgf_file" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_jsgf_file" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_jsgf_file" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_jsgf_file(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_jsgf_file returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_jsgf_string(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_jsgf_string",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_jsgf_string" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_jsgf_string" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_jsgf_string" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_jsgf_string(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_jsgf_string returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_kws(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_get_kws",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_kws" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_get_kws" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (char *)Decoder_get_kws(arg1,(char const *)arg2);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_kws(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_kws",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_kws" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_kws" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_kws" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_kws(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_kws returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_keyphrase(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_keyphrase",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_keyphrase" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_keyphrase" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_keyphrase" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_keyphrase(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_keyphrase returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_allphone_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_allphone_file",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_allphone_file" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_allphone_file" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_allphone_file" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_allphone_file(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_allphone_file returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_lm(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_get_lm",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_lm" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_get_lm" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (NGramModel *)Decoder_get_lm(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_OWN | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_lm(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ NGramModel *arg3 = (NGramModel *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_lm",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_lm" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_lm" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_lm" "', argument " "3"" of type '" "NGramModel *""'");
+ }
+ arg3 = (NGramModel *)(argp3);
+ Decoder_set_lm(arg1,(char const *)arg2,arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_lm returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_lm_file(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Decoder_set_lm_file",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_lm_file" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_lm_file" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Decoder_set_lm_file" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Decoder_set_lm_file(arg1,(char const *)arg2,(char const *)arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_lm_file returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_logmath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ LogMath *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_logmath",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_logmath" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (LogMath *)Decoder_get_logmath(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_LogMath, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_set_search(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:Decoder_set_search",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_set_search" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Decoder_set_search" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ Decoder_set_search(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Decoder_set_search returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_get_search(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_get_search",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_get_search" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (char *)Decoder_get_search(arg1);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_n_frames(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_n_frames",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_n_frames" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (int)Decoder_n_frames(arg1);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_seg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ SegmentList *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_seg",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_seg" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (SegmentList *)Decoder_seg(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_SegmentList, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Decoder_nbest(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBestList *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Decoder_nbest",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Decoder_nbest" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ result = (NBestList *)Decoder_nbest(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBestList, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Decoder_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Decoder, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_Lattice__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Lattice *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_Lattice",&obj0)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Lattice" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ result = (Lattice *)new_Lattice__SWIG_0((char const *)arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Lattice, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Lattice__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Decoder *arg1 = (Decoder *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ Lattice *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:new_Lattice",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Decoder, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Lattice" "', argument " "1"" of type '" "Decoder *""'");
+ }
+ arg1 = (Decoder *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_Lattice" "', argument " "2"" of type '" "char *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (Lattice *)new_Lattice__SWIG_1(arg1,arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Lattice, SWIG_POINTER_NEW | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Lattice(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[3];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 2) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 1) {
+ int _v;
+ int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_Lattice__SWIG_0(self, args);
+ }
+ }
+ if (argc == 2) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Decoder, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ int res = SWIG_AsCharPtrAndSize(argv[1], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_Lattice__SWIG_1(self, args);
+ }
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_Lattice'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " Lattice::Lattice(char const *)\n"
+ " Lattice::Lattice(Decoder *,char *)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Lattice(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Lattice *arg1 = (Lattice *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Lattice",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Lattice, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Lattice" "', argument " "1"" of type '" "Lattice *""'");
+ }
+ arg1 = (Lattice *)(argp1);
+ delete_Lattice(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Lattice_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Lattice *arg1 = (Lattice *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:Lattice_write",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Lattice, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Lattice_write" "', argument " "1"" of type '" "Lattice *""'");
+ }
+ arg1 = (Lattice *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Lattice_write" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ Lattice_write(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Lattice_write returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Lattice_write_htk(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Lattice *arg1 = (Lattice *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:Lattice_write_htk",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Lattice, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Lattice_write_htk" "', argument " "1"" of type '" "Lattice *""'");
+ }
+ arg1 = (Lattice *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Lattice_write_htk" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ Lattice_write_htk(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "Lattice_write_htk returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Lattice_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Lattice, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NBestList___iter__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestList *arg1 = (NBestList *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NBestIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NBestList___iter__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestList, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NBestList___iter__" "', argument " "1"" of type '" "NBestList *""'");
+ }
+ arg1 = (NBestList *)(argp1);
+ result = (NBestIterator *)NBestList___iter__(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NBestIterator, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NBestList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NBestList *arg1 = (NBestList *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NBestList",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NBestList, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NBestList" "', argument " "1"" of type '" "NBestList *""'");
+ }
+ arg1 = (NBestList *)(argp1);
+ free((char *) arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NBestList_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NBestList, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_SegmentList___iter__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentList *arg1 = (SegmentList *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ SegmentIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:SegmentList___iter__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentList, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SegmentList___iter__" "', argument " "1"" of type '" "SegmentList *""'");
+ }
+ arg1 = (SegmentList *)(argp1);
+ result = (SegmentIterator *)SegmentList___iter__(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_SegmentIterator, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_SegmentList(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ SegmentList *arg1 = (SegmentList *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_SegmentList",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_SegmentList, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_SegmentList" "', argument " "1"" of type '" "SegmentList *""'");
+ }
+ arg1 = (SegmentList *)(argp1);
+ free((char *) arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *SegmentList_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_SegmentList, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+static PyMethodDef SwigMethods[] = {
+ { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL},
+ { (char *)"Hypothesis_hypstr_set", _wrap_Hypothesis_hypstr_set, METH_VARARGS, (char *)"Hypothesis_hypstr_set(Hypothesis self, char * hypstr)"},
+ { (char *)"Hypothesis_hypstr_get", _wrap_Hypothesis_hypstr_get, METH_VARARGS, (char *)"Hypothesis_hypstr_get(Hypothesis self) -> char *"},
+ { (char *)"Hypothesis_best_score_set", _wrap_Hypothesis_best_score_set, METH_VARARGS, (char *)"Hypothesis_best_score_set(Hypothesis self, int best_score)"},
+ { (char *)"Hypothesis_best_score_get", _wrap_Hypothesis_best_score_get, METH_VARARGS, (char *)"Hypothesis_best_score_get(Hypothesis self) -> int"},
+ { (char *)"Hypothesis_prob_set", _wrap_Hypothesis_prob_set, METH_VARARGS, (char *)"Hypothesis_prob_set(Hypothesis self, int prob)"},
+ { (char *)"Hypothesis_prob_get", _wrap_Hypothesis_prob_get, METH_VARARGS, (char *)"Hypothesis_prob_get(Hypothesis self) -> int"},
+ { (char *)"new_Hypothesis", _wrap_new_Hypothesis, METH_VARARGS, (char *)"new_Hypothesis(char const * hypstr, int best_score, int prob) -> Hypothesis"},
+ { (char *)"delete_Hypothesis", _wrap_delete_Hypothesis, METH_VARARGS, (char *)"delete_Hypothesis(Hypothesis self)"},
+ { (char *)"Hypothesis_swigregister", Hypothesis_swigregister, METH_VARARGS, NULL},
+ { (char *)"Segment_word_set", _wrap_Segment_word_set, METH_VARARGS, (char *)"Segment_word_set(Segment self, char * word)"},
+ { (char *)"Segment_word_get", _wrap_Segment_word_get, METH_VARARGS, (char *)"Segment_word_get(Segment self) -> char *"},
+ { (char *)"Segment_ascore_set", _wrap_Segment_ascore_set, METH_VARARGS, (char *)"Segment_ascore_set(Segment self, int32 ascore)"},
+ { (char *)"Segment_ascore_get", _wrap_Segment_ascore_get, METH_VARARGS, (char *)"Segment_ascore_get(Segment self) -> int32"},
+ { (char *)"Segment_lscore_set", _wrap_Segment_lscore_set, METH_VARARGS, (char *)"Segment_lscore_set(Segment self, int32 lscore)"},
+ { (char *)"Segment_lscore_get", _wrap_Segment_lscore_get, METH_VARARGS, (char *)"Segment_lscore_get(Segment self) -> int32"},
+ { (char *)"Segment_lback_set", _wrap_Segment_lback_set, METH_VARARGS, (char *)"Segment_lback_set(Segment self, int32 lback)"},
+ { (char *)"Segment_lback_get", _wrap_Segment_lback_get, METH_VARARGS, (char *)"Segment_lback_get(Segment self) -> int32"},
+ { (char *)"Segment_prob_set", _wrap_Segment_prob_set, METH_VARARGS, (char *)"Segment_prob_set(Segment self, int32 prob)"},
+ { (char *)"Segment_prob_get", _wrap_Segment_prob_get, METH_VARARGS, (char *)"Segment_prob_get(Segment self) -> int32"},
+ { (char *)"Segment_start_frame_set", _wrap_Segment_start_frame_set, METH_VARARGS, (char *)"Segment_start_frame_set(Segment self, int start_frame)"},
+ { (char *)"Segment_start_frame_get", _wrap_Segment_start_frame_get, METH_VARARGS, (char *)"Segment_start_frame_get(Segment self) -> int"},
+ { (char *)"Segment_end_frame_set", _wrap_Segment_end_frame_set, METH_VARARGS, (char *)"Segment_end_frame_set(Segment self, int end_frame)"},
+ { (char *)"Segment_end_frame_get", _wrap_Segment_end_frame_get, METH_VARARGS, (char *)"Segment_end_frame_get(Segment self) -> int"},
+ { (char *)"Segment_fromIter", _wrap_Segment_fromIter, METH_VARARGS, (char *)"Segment_fromIter(ps_seg_t * itor) -> Segment"},
+ { (char *)"delete_Segment", _wrap_delete_Segment, METH_VARARGS, (char *)"delete_Segment(Segment self)"},
+ { (char *)"new_Segment", _wrap_new_Segment, METH_VARARGS, (char *)"new_Segment() -> Segment"},
+ { (char *)"Segment_swigregister", Segment_swigregister, METH_VARARGS, NULL},
+ { (char *)"NBest_hypstr_set", _wrap_NBest_hypstr_set, METH_VARARGS, (char *)"NBest_hypstr_set(NBest self, char * hypstr)"},
+ { (char *)"NBest_hypstr_get", _wrap_NBest_hypstr_get, METH_VARARGS, (char *)"NBest_hypstr_get(NBest self) -> char *"},
+ { (char *)"NBest_score_set", _wrap_NBest_score_set, METH_VARARGS, (char *)"NBest_score_set(NBest self, int32 score)"},
+ { (char *)"NBest_score_get", _wrap_NBest_score_get, METH_VARARGS, (char *)"NBest_score_get(NBest self) -> int32"},
+ { (char *)"NBest_fromIter", _wrap_NBest_fromIter, METH_VARARGS, (char *)"NBest_fromIter(ps_nbest_t * itor) -> NBest"},
+ { (char *)"NBest_hyp", _wrap_NBest_hyp, METH_VARARGS, (char *)"NBest_hyp(NBest self) -> Hypothesis"},
+ { (char *)"delete_NBest", _wrap_delete_NBest, METH_VARARGS, (char *)"delete_NBest(NBest self)"},
+ { (char *)"new_NBest", _wrap_new_NBest, METH_VARARGS, (char *)"new_NBest() -> NBest"},
+ { (char *)"NBest_swigregister", NBest_swigregister, METH_VARARGS, NULL},
+ { (char *)"SegmentIterator_ptr_set", _wrap_SegmentIterator_ptr_set, METH_VARARGS, (char *)"SegmentIterator_ptr_set(SegmentIterator self, ps_seg_t * ptr)"},
+ { (char *)"SegmentIterator_ptr_get", _wrap_SegmentIterator_ptr_get, METH_VARARGS, (char *)"SegmentIterator_ptr_get(SegmentIterator self) -> ps_seg_t *"},
+ { (char *)"new_SegmentIterator", _wrap_new_SegmentIterator, METH_VARARGS, (char *)"new_SegmentIterator(ps_seg_t * ptr) -> SegmentIterator"},
+ { (char *)"delete_SegmentIterator", _wrap_delete_SegmentIterator, METH_VARARGS, (char *)"delete_SegmentIterator(SegmentIterator self)"},
+ { (char *)"SegmentIterator_next", _wrap_SegmentIterator_next, METH_VARARGS, (char *)"SegmentIterator_next(SegmentIterator self) -> Segment"},
+ { (char *)"SegmentIterator___next__", _wrap_SegmentIterator___next__, METH_VARARGS, (char *)"SegmentIterator___next__(SegmentIterator self) -> Segment"},
+ { (char *)"SegmentIterator_swigregister", SegmentIterator_swigregister, METH_VARARGS, NULL},
+ { (char *)"NBestIterator_ptr_set", _wrap_NBestIterator_ptr_set, METH_VARARGS, (char *)"NBestIterator_ptr_set(NBestIterator self, ps_nbest_t * ptr)"},
+ { (char *)"NBestIterator_ptr_get", _wrap_NBestIterator_ptr_get, METH_VARARGS, (char *)"NBestIterator_ptr_get(NBestIterator self) -> ps_nbest_t *"},
+ { (char *)"new_NBestIterator", _wrap_new_NBestIterator, METH_VARARGS, (char *)"new_NBestIterator(ps_nbest_t * ptr) -> NBestIterator"},
+ { (char *)"delete_NBestIterator", _wrap_delete_NBestIterator, METH_VARARGS, (char *)"delete_NBestIterator(NBestIterator self)"},
+ { (char *)"NBestIterator_next", _wrap_NBestIterator_next, METH_VARARGS, (char *)"NBestIterator_next(NBestIterator self) -> NBest"},
+ { (char *)"NBestIterator___next__", _wrap_NBestIterator___next__, METH_VARARGS, (char *)"NBestIterator___next__(NBestIterator self) -> NBest"},
+ { (char *)"NBestIterator_swigregister", NBestIterator_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_Decoder", _wrap_new_Decoder, METH_VARARGS, (char *)"\n"
+ "Decoder()\n"
+ "new_Decoder(Config config) -> Decoder\n"
+ ""},
+ { (char *)"delete_Decoder", _wrap_delete_Decoder, METH_VARARGS, (char *)"delete_Decoder(Decoder self)"},
+ { (char *)"Decoder_reinit", _wrap_Decoder_reinit, METH_VARARGS, (char *)"Decoder_reinit(Decoder self, Config config)"},
+ { (char *)"Decoder_load_dict", _wrap_Decoder_load_dict, METH_VARARGS, (char *)"Decoder_load_dict(Decoder self, char const * fdict, char const * ffilter, char const * format)"},
+ { (char *)"Decoder_save_dict", _wrap_Decoder_save_dict, METH_VARARGS, (char *)"Decoder_save_dict(Decoder self, char const * dictfile, char const * format)"},
+ { (char *)"Decoder_add_word", _wrap_Decoder_add_word, METH_VARARGS, (char *)"Decoder_add_word(Decoder self, char const * word, char const * phones, int update)"},
+ { (char *)"Decoder_lookup_word", _wrap_Decoder_lookup_word, METH_VARARGS, (char *)"Decoder_lookup_word(Decoder self, char const * word) -> char *"},
+ { (char *)"Decoder_get_lattice", _wrap_Decoder_get_lattice, METH_VARARGS, (char *)"Decoder_get_lattice(Decoder self) -> Lattice"},
+ { (char *)"Decoder_get_config", _wrap_Decoder_get_config, METH_VARARGS, (char *)"Decoder_get_config(Decoder self) -> Config"},
+ { (char *)"Decoder_default_config", _wrap_Decoder_default_config, METH_VARARGS, (char *)"Decoder_default_config() -> Config"},
+ { (char *)"Decoder_file_config", _wrap_Decoder_file_config, METH_VARARGS, (char *)"Decoder_file_config(char const * path) -> Config"},
+ { (char *)"Decoder_start_stream", _wrap_Decoder_start_stream, METH_VARARGS, (char *)"Decoder_start_stream(Decoder self)"},
+ { (char *)"Decoder_start_utt", _wrap_Decoder_start_utt, METH_VARARGS, (char *)"Decoder_start_utt(Decoder self)"},
+ { (char *)"Decoder_end_utt", _wrap_Decoder_end_utt, METH_VARARGS, (char *)"Decoder_end_utt(Decoder self)"},
+ { (char *)"Decoder_process_raw", _wrap_Decoder_process_raw, METH_VARARGS, (char *)"Decoder_process_raw(Decoder self, char const * SDATA, bool no_search, bool full_utt) -> int"},
+ { (char *)"Decoder_process_cep", _wrap_Decoder_process_cep, METH_VARARGS, (char *)"Decoder_process_cep(Decoder self, char const * SDATA, bool no_search, bool full_utt) -> int"},
+ { (char *)"Decoder_hyp", _wrap_Decoder_hyp, METH_VARARGS, (char *)"Decoder_hyp(Decoder self) -> Hypothesis"},
+ { (char *)"Decoder_get_fe", _wrap_Decoder_get_fe, METH_VARARGS, (char *)"Decoder_get_fe(Decoder self) -> FrontEnd"},
+ { (char *)"Decoder_get_feat", _wrap_Decoder_get_feat, METH_VARARGS, (char *)"Decoder_get_feat(Decoder self) -> Feature"},
+ { (char *)"Decoder_get_in_speech", _wrap_Decoder_get_in_speech, METH_VARARGS, (char *)"Decoder_get_in_speech(Decoder self) -> bool"},
+ { (char *)"Decoder_get_fsg", _wrap_Decoder_get_fsg, METH_VARARGS, (char *)"Decoder_get_fsg(Decoder self, char const * name) -> FsgModel"},
+ { (char *)"Decoder_set_fsg", _wrap_Decoder_set_fsg, METH_VARARGS, (char *)"Decoder_set_fsg(Decoder self, char const * name, FsgModel fsg)"},
+ { (char *)"Decoder_set_jsgf_file", _wrap_Decoder_set_jsgf_file, METH_VARARGS, (char *)"Decoder_set_jsgf_file(Decoder self, char const * name, char const * path)"},
+ { (char *)"Decoder_set_jsgf_string", _wrap_Decoder_set_jsgf_string, METH_VARARGS, (char *)"Decoder_set_jsgf_string(Decoder self, char const * name, char const * jsgf_string)"},
+ { (char *)"Decoder_get_kws", _wrap_Decoder_get_kws, METH_VARARGS, (char *)"Decoder_get_kws(Decoder self, char const * name) -> char const *"},
+ { (char *)"Decoder_set_kws", _wrap_Decoder_set_kws, METH_VARARGS, (char *)"Decoder_set_kws(Decoder self, char const * name, char const * keyfile)"},
+ { (char *)"Decoder_set_keyphrase", _wrap_Decoder_set_keyphrase, METH_VARARGS, (char *)"Decoder_set_keyphrase(Decoder self, char const * name, char const * keyphrase)"},
+ { (char *)"Decoder_set_allphone_file", _wrap_Decoder_set_allphone_file, METH_VARARGS, (char *)"Decoder_set_allphone_file(Decoder self, char const * name, char const * lmfile)"},
+ { (char *)"Decoder_get_lm", _wrap_Decoder_get_lm, METH_VARARGS, (char *)"Decoder_get_lm(Decoder self, char const * name) -> NGramModel"},
+ { (char *)"Decoder_set_lm", _wrap_Decoder_set_lm, METH_VARARGS, (char *)"Decoder_set_lm(Decoder self, char const * name, NGramModel lm)"},
+ { (char *)"Decoder_set_lm_file", _wrap_Decoder_set_lm_file, METH_VARARGS, (char *)"Decoder_set_lm_file(Decoder self, char const * name, char const * path)"},
+ { (char *)"Decoder_get_logmath", _wrap_Decoder_get_logmath, METH_VARARGS, (char *)"Decoder_get_logmath(Decoder self) -> LogMath"},
+ { (char *)"Decoder_set_search", _wrap_Decoder_set_search, METH_VARARGS, (char *)"Decoder_set_search(Decoder self, char const * search_name)"},
+ { (char *)"Decoder_get_search", _wrap_Decoder_get_search, METH_VARARGS, (char *)"Decoder_get_search(Decoder self) -> char const *"},
+ { (char *)"Decoder_n_frames", _wrap_Decoder_n_frames, METH_VARARGS, (char *)"Decoder_n_frames(Decoder self) -> int"},
+ { (char *)"Decoder_seg", _wrap_Decoder_seg, METH_VARARGS, (char *)"Decoder_seg(Decoder self) -> SegmentList"},
+ { (char *)"Decoder_nbest", _wrap_Decoder_nbest, METH_VARARGS, (char *)"Decoder_nbest(Decoder self) -> NBestList"},
+ { (char *)"Decoder_swigregister", Decoder_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_Lattice", _wrap_new_Lattice, METH_VARARGS, (char *)"\n"
+ "Lattice(char const * path)\n"
+ "new_Lattice(Decoder decoder, char * path) -> Lattice\n"
+ ""},
+ { (char *)"delete_Lattice", _wrap_delete_Lattice, METH_VARARGS, (char *)"delete_Lattice(Lattice self)"},
+ { (char *)"Lattice_write", _wrap_Lattice_write, METH_VARARGS, (char *)"Lattice_write(Lattice self, char const * path)"},
+ { (char *)"Lattice_write_htk", _wrap_Lattice_write_htk, METH_VARARGS, (char *)"Lattice_write_htk(Lattice self, char const * path)"},
+ { (char *)"Lattice_swigregister", Lattice_swigregister, METH_VARARGS, NULL},
+ { (char *)"NBestList___iter__", _wrap_NBestList___iter__, METH_VARARGS, (char *)"NBestList___iter__(NBestList self) -> NBestIterator"},
+ { (char *)"delete_NBestList", _wrap_delete_NBestList, METH_VARARGS, (char *)"delete_NBestList(NBestList self)"},
+ { (char *)"NBestList_swigregister", NBestList_swigregister, METH_VARARGS, NULL},
+ { (char *)"SegmentList___iter__", _wrap_SegmentList___iter__, METH_VARARGS, (char *)"SegmentList___iter__(SegmentList self) -> SegmentIterator"},
+ { (char *)"delete_SegmentList", _wrap_delete_SegmentList, METH_VARARGS, (char *)"delete_SegmentList(SegmentList self)"},
+ { (char *)"SegmentList_swigregister", SegmentList_swigregister, METH_VARARGS, NULL},
+ { NULL, NULL, 0, NULL }
+};
+
+
+/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
+
+static swig_type_info _swigt__p_Config = {"_p_Config", "Config *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Decoder = {"_p_Decoder", "Decoder *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Feature = {"_p_Feature", "Feature *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_FrontEnd = {"_p_FrontEnd", "FrontEnd *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_FsgModel = {"_p_FsgModel", "FsgModel *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Hypothesis = {"_p_Hypothesis", "Hypothesis *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Lattice = {"_p_Lattice", "Lattice *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_LogMath = {"_p_LogMath", "LogMath *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NBest = {"_p_NBest", "NBest *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NBestIterator = {"_p_NBestIterator", "NBestIterator *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NBestList = {"_p_NBestList", "NBestList *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NGramModel = {"_p_NGramModel", "NGramModel *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Segment = {"_p_Segment", "Segment *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_SegmentIterator = {"_p_SegmentIterator", "SegmentIterator *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_SegmentList = {"_p_SegmentList", "SegmentList *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_int = {"_p_int", "int *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_ps_nbest_t = {"_p_ps_nbest_t", "ps_nbest_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_ps_seg_t = {"_p_ps_seg_t", "ps_seg_t *", 0, 0, (void*)0, 0};
+
+static swig_type_info *swig_type_initial[] = {
+ &_swigt__p_Config,
+ &_swigt__p_Decoder,
+ &_swigt__p_Feature,
+ &_swigt__p_FrontEnd,
+ &_swigt__p_FsgModel,
+ &_swigt__p_Hypothesis,
+ &_swigt__p_Lattice,
+ &_swigt__p_LogMath,
+ &_swigt__p_NBest,
+ &_swigt__p_NBestIterator,
+ &_swigt__p_NBestList,
+ &_swigt__p_NGramModel,
+ &_swigt__p_Segment,
+ &_swigt__p_SegmentIterator,
+ &_swigt__p_SegmentList,
+ &_swigt__p_char,
+ &_swigt__p_int,
+ &_swigt__p_ps_nbest_t,
+ &_swigt__p_ps_seg_t,
+};
+
+static swig_cast_info _swigc__p_Config[] = { {&_swigt__p_Config, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Decoder[] = { {&_swigt__p_Decoder, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Feature[] = { {&_swigt__p_Feature, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_FrontEnd[] = { {&_swigt__p_FrontEnd, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_FsgModel[] = { {&_swigt__p_FsgModel, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Hypothesis[] = { {&_swigt__p_Hypothesis, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Lattice[] = { {&_swigt__p_Lattice, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_LogMath[] = { {&_swigt__p_LogMath, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NBest[] = { {&_swigt__p_NBest, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NBestIterator[] = { {&_swigt__p_NBestIterator, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NBestList[] = { {&_swigt__p_NBestList, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NGramModel[] = { {&_swigt__p_NGramModel, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Segment[] = { {&_swigt__p_Segment, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_SegmentIterator[] = { {&_swigt__p_SegmentIterator, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_SegmentList[] = { {&_swigt__p_SegmentList, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_ps_nbest_t[] = { {&_swigt__p_ps_nbest_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_ps_seg_t[] = { {&_swigt__p_ps_seg_t, 0, 0, 0},{0, 0, 0, 0}};
+
+static swig_cast_info *swig_cast_initial[] = {
+ _swigc__p_Config,
+ _swigc__p_Decoder,
+ _swigc__p_Feature,
+ _swigc__p_FrontEnd,
+ _swigc__p_FsgModel,
+ _swigc__p_Hypothesis,
+ _swigc__p_Lattice,
+ _swigc__p_LogMath,
+ _swigc__p_NBest,
+ _swigc__p_NBestIterator,
+ _swigc__p_NBestList,
+ _swigc__p_NGramModel,
+ _swigc__p_Segment,
+ _swigc__p_SegmentIterator,
+ _swigc__p_SegmentList,
+ _swigc__p_char,
+ _swigc__p_int,
+ _swigc__p_ps_nbest_t,
+ _swigc__p_ps_seg_t,
+};
+
+
+/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
+
+static swig_const_info swig_const_table[] = {
+{0, 0, 0, 0.0, 0, 0}};
+
+#ifdef __cplusplus
+}
+#endif
+/* -----------------------------------------------------------------------------
+ * Type initialization:
+ * This problem is tough by the requirement that no dynamic
+ * memory is used. Also, since swig_type_info structures store pointers to
+ * swig_cast_info structures and swig_cast_info structures store pointers back
+ * to swig_type_info structures, we need some lookup code at initialization.
+ * The idea is that swig generates all the structures that are needed.
+ * The runtime then collects these partially filled structures.
+ * The SWIG_InitializeModule function takes these initial arrays out of
+ * swig_module, and does all the lookup, filling in the swig_module.types
+ * array with the correct data and linking the correct swig_cast_info
+ * structures together.
+ *
+ * The generated swig_type_info structures are assigned staticly to an initial
+ * array. We just loop through that array, and handle each type individually.
+ * First we lookup if this type has been already loaded, and if so, use the
+ * loaded structure instead of the generated one. Then we have to fill in the
+ * cast linked list. The cast data is initially stored in something like a
+ * two-dimensional array. Each row corresponds to a type (there are the same
+ * number of rows as there are in the swig_type_initial array). Each entry in
+ * a column is one of the swig_cast_info structures for that type.
+ * The cast_initial array is actually an array of arrays, because each row has
+ * a variable number of columns. So to actually build the cast linked list,
+ * we find the array of casts associated with the type, and loop through it
+ * adding the casts to the list. The one last trick we need to do is making
+ * sure the type pointer in the swig_cast_info struct is correct.
+ *
+ * First off, we lookup the cast->type name to see if it is already loaded.
+ * There are three cases to handle:
+ * 1) If the cast->type has already been loaded AND the type we are adding
+ * casting info to has not been loaded (it is in this module), THEN we
+ * replace the cast->type pointer with the type pointer that has already
+ * been loaded.
+ * 2) If BOTH types (the one we are adding casting info to, and the
+ * cast->type) are loaded, THEN the cast info has already been loaded by
+ * the previous module so we just ignore it.
+ * 3) Finally, if cast->type has not already been loaded, then we add that
+ * swig_cast_info to the linked list (because the cast->type) pointer will
+ * be correct.
+ * ----------------------------------------------------------------------------- */
+
+#ifdef __cplusplus
+extern "C" {
+#if 0
+} /* c-mode */
+#endif
+#endif
+
+#if 0
+#define SWIGRUNTIME_DEBUG
+#endif
+
+
+SWIGRUNTIME void
+SWIG_InitializeModule(void *clientdata) {
+ size_t i;
+ swig_module_info *module_head, *iter;
+ int found, init;
+
+ /* check to see if the circular list has been setup, if not, set it up */
+ if (swig_module.next==0) {
+ /* Initialize the swig_module */
+ swig_module.type_initial = swig_type_initial;
+ swig_module.cast_initial = swig_cast_initial;
+ swig_module.next = &swig_module;
+ init = 1;
+ } else {
+ init = 0;
+ }
+
+ /* Try and load any already created modules */
+ module_head = SWIG_GetModule(clientdata);
+ if (!module_head) {
+ /* This is the first module loaded for this interpreter */
+ /* so set the swig module into the interpreter */
+ SWIG_SetModule(clientdata, &swig_module);
+ module_head = &swig_module;
+ } else {
+ /* the interpreter has loaded a SWIG module, but has it loaded this one? */
+ found=0;
+ iter=module_head;
+ do {
+ if (iter==&swig_module) {
+ found=1;
+ break;
+ }
+ iter=iter->next;
+ } while (iter!= module_head);
+
+ /* if the is found in the list, then all is done and we may leave */
+ if (found) return;
+ /* otherwise we must add out module into the list */
+ swig_module.next = module_head->next;
+ module_head->next = &swig_module;
+ }
+
+ /* When multiple interpreters are used, a module could have already been initialized in
+ a different interpreter, but not yet have a pointer in this interpreter.
+ In this case, we do not want to continue adding types... everything should be
+ set up already */
+ if (init == 0) return;
+
+ /* Now work on filling in swig_module.types */
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: size %d\n", swig_module.size);
+#endif
+ for (i = 0; i < swig_module.size; ++i) {
+ swig_type_info *type = 0;
+ swig_type_info *ret;
+ swig_cast_info *cast;
+
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
+#endif
+
+ /* if there is another module already loaded */
+ if (swig_module.next != &swig_module) {
+ type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name);
+ }
+ if (type) {
+ /* Overwrite clientdata field */
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: found type %s\n", type->name);
+#endif
+ if (swig_module.type_initial[i]->clientdata) {
+ type->clientdata = swig_module.type_initial[i]->clientdata;
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name);
+#endif
+ }
+ } else {
+ type = swig_module.type_initial[i];
+ }
+
+ /* Insert casting types */
+ cast = swig_module.cast_initial[i];
+ while (cast->type) {
+ /* Don't need to add information already in the list */
+ ret = 0;
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: look cast %s\n", cast->type->name);
+#endif
+ if (swig_module.next != &swig_module) {
+ ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name);
+#ifdef SWIGRUNTIME_DEBUG
+ if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name);
+#endif
+ }
+ if (ret) {
+ if (type == swig_module.type_initial[i]) {
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: skip old type %s\n", ret->name);
+#endif
+ cast->type = ret;
+ ret = 0;
+ } else {
+ /* Check for casting already in the list */
+ swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type);
+#ifdef SWIGRUNTIME_DEBUG
+ if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name);
+#endif
+ if (!ocast) ret = 0;
+ }
+ }
+
+ if (!ret) {
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name);
+#endif
+ if (type->cast) {
+ type->cast->prev = cast;
+ cast->next = type->cast;
+ }
+ type->cast = cast;
+ }
+ cast++;
+ }
+ /* Set entry in modules->types array equal to the type */
+ swig_module.types[i] = type;
+ }
+ swig_module.types[i] = 0;
+
+#ifdef SWIGRUNTIME_DEBUG
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
+ for (i = 0; i < swig_module.size; ++i) {
+ int j = 0;
+ swig_cast_info *cast = swig_module.cast_initial[i];
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
+ while (cast->type) {
+ printf("SWIG_InitializeModule: cast type %s\n", cast->type->name);
+ cast++;
+ ++j;
+ }
+ printf("---- Total casts: %d\n",j);
+ }
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
+#endif
+}
+
+/* This function will propagate the clientdata field of type to
+* any new swig_type_info structures that have been added into the list
+* of equivalent types. It is like calling
+* SWIG_TypeClientData(type, clientdata) a second time.
+*/
+SWIGRUNTIME void
+SWIG_PropagateClientData(void) {
+ size_t i;
+ swig_cast_info *equiv;
+ static int init_run = 0;
+
+ if (init_run) return;
+ init_run = 1;
+
+ for (i = 0; i < swig_module.size; i++) {
+ if (swig_module.types[i]->clientdata) {
+ equiv = swig_module.types[i]->cast;
+ while (equiv) {
+ if (!equiv->converter) {
+ if (equiv->type && !equiv->type->clientdata)
+ SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata);
+ }
+ equiv = equiv->next;
+ }
+ }
+ }
+}
+
+#ifdef __cplusplus
+#if 0
+{
+ /* c-mode */
+#endif
+}
+#endif
+
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ /* Python-specific SWIG API */
+#define SWIG_newvarlink() SWIG_Python_newvarlink()
+#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
+#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
+
+ /* -----------------------------------------------------------------------------
+ * global variable support code.
+ * ----------------------------------------------------------------------------- */
+
+ typedef struct swig_globalvar {
+ char *name; /* Name of global variable */
+ PyObject *(*get_attr)(void); /* Return the current value */
+ int (*set_attr)(PyObject *); /* Set the value */
+ struct swig_globalvar *next;
+ } swig_globalvar;
+
+ typedef struct swig_varlinkobject {
+ PyObject_HEAD
+ swig_globalvar *vars;
+ } swig_varlinkobject;
+
+ SWIGINTERN PyObject *
+ swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) {
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_InternFromString("");
+#else
+ return PyString_FromString("");
+#endif
+ }
+
+ SWIGINTERN PyObject *
+ swig_varlink_str(swig_varlinkobject *v) {
+#if PY_VERSION_HEX >= 0x03000000
+ PyObject *str = PyUnicode_InternFromString("(");
+ PyObject *tail;
+ PyObject *joined;
+ swig_globalvar *var;
+ for (var = v->vars; var; var=var->next) {
+ tail = PyUnicode_FromString(var->name);
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+ if (var->next) {
+ tail = PyUnicode_InternFromString(", ");
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+ }
+ }
+ tail = PyUnicode_InternFromString(")");
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+#else
+ PyObject *str = PyString_FromString("(");
+ swig_globalvar *var;
+ for (var = v->vars; var; var=var->next) {
+ PyString_ConcatAndDel(&str,PyString_FromString(var->name));
+ if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", "));
+ }
+ PyString_ConcatAndDel(&str,PyString_FromString(")"));
+#endif
+ return str;
+ }
+
+ SWIGINTERN int
+ swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) {
+ char *tmp;
+ PyObject *str = swig_varlink_str(v);
+ fprintf(fp,"Swig global variables ");
+ fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str));
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(str);
+ return 0;
+ }
+
+ SWIGINTERN void
+ swig_varlink_dealloc(swig_varlinkobject *v) {
+ swig_globalvar *var = v->vars;
+ while (var) {
+ swig_globalvar *n = var->next;
+ free(var->name);
+ free(var);
+ var = n;
+ }
+ }
+
+ SWIGINTERN PyObject *
+ swig_varlink_getattr(swig_varlinkobject *v, char *n) {
+ PyObject *res = NULL;
+ swig_globalvar *var = v->vars;
+ while (var) {
+ if (strcmp(var->name,n) == 0) {
+ res = (*var->get_attr)();
+ break;
+ }
+ var = var->next;
+ }
+ if (res == NULL && !PyErr_Occurred()) {
+ PyErr_SetString(PyExc_NameError,"Unknown C global variable");
+ }
+ return res;
+ }
+
+ SWIGINTERN int
+ swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) {
+ int res = 1;
+ swig_globalvar *var = v->vars;
+ while (var) {
+ if (strcmp(var->name,n) == 0) {
+ res = (*var->set_attr)(p);
+ break;
+ }
+ var = var->next;
+ }
+ if (res == 1 && !PyErr_Occurred()) {
+ PyErr_SetString(PyExc_NameError,"Unknown C global variable");
+ }
+ return res;
+ }
+
+ SWIGINTERN PyTypeObject*
+ swig_varlink_type(void) {
+ static char varlink__doc__[] = "Swig var link object";
+ static PyTypeObject varlink_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"swigvarlink", /* tp_name */
+ sizeof(swig_varlinkobject), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor) swig_varlink_dealloc, /* tp_dealloc */
+ (printfunc) swig_varlink_print, /* tp_print */
+ (getattrfunc) swig_varlink_getattr, /* tp_getattr */
+ (setattrfunc) swig_varlink_setattr, /* tp_setattr */
+ 0, /* tp_compare */
+ (reprfunc) swig_varlink_repr, /* tp_repr */
+ 0, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ 0, /* tp_hash */
+ 0, /* tp_call */
+ (reprfunc) swig_varlink_str, /* tp_str */
+ 0, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ 0, /* tp_flags */
+ varlink__doc__, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ varlink_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ varlink_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&varlink_type) < 0)
+ return NULL;
+#endif
+ }
+ return &varlink_type;
+ }
+
+ /* Create a variable linking object for use later */
+ SWIGINTERN PyObject *
+ SWIG_Python_newvarlink(void) {
+ swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type());
+ if (result) {
+ result->vars = 0;
+ }
+ return ((PyObject*) result);
+ }
+
+ SWIGINTERN void
+ SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) {
+ swig_varlinkobject *v = (swig_varlinkobject *) p;
+ swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar));
+ if (gv) {
+ size_t size = strlen(name)+1;
+ gv->name = (char *)malloc(size);
+ if (gv->name) {
+ strncpy(gv->name,name,size);
+ gv->get_attr = get_attr;
+ gv->set_attr = set_attr;
+ gv->next = v->vars;
+ }
+ }
+ v->vars = gv;
+ }
+
+ SWIGINTERN PyObject *
+ SWIG_globals(void) {
+ static PyObject *_SWIG_globals = 0;
+ if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink();
+ return _SWIG_globals;
+ }
+
+ /* -----------------------------------------------------------------------------
+ * constants/methods manipulation
+ * ----------------------------------------------------------------------------- */
+
+ /* Install Constants */
+ SWIGINTERN void
+ SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) {
+ PyObject *obj = 0;
+ size_t i;
+ for (i = 0; constants[i].type; ++i) {
+ switch(constants[i].type) {
+ case SWIG_PY_POINTER:
+ obj = SWIG_InternalNewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0);
+ break;
+ case SWIG_PY_BINARY:
+ obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
+ break;
+ default:
+ obj = 0;
+ break;
+ }
+ if (obj) {
+ PyDict_SetItemString(d, constants[i].name, obj);
+ Py_DECREF(obj);
+ }
+ }
+ }
+
+ /* -----------------------------------------------------------------------------*/
+ /* Fix SwigMethods to carry the callback ptrs when needed */
+ /* -----------------------------------------------------------------------------*/
+
+ SWIGINTERN void
+ SWIG_Python_FixMethods(PyMethodDef *methods,
+ swig_const_info *const_table,
+ swig_type_info **types,
+ swig_type_info **types_initial) {
+ size_t i;
+ for (i = 0; methods[i].ml_name; ++i) {
+ const char *c = methods[i].ml_doc;
+ if (c && (c = strstr(c, "swig_ptr: "))) {
+ int j;
+ swig_const_info *ci = 0;
+ const char *name = c + 10;
+ for (j = 0; const_table[j].type; ++j) {
+ if (strncmp(const_table[j].name, name,
+ strlen(const_table[j].name)) == 0) {
+ ci = &(const_table[j]);
+ break;
+ }
+ }
+ if (ci) {
+ void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0;
+ if (ptr) {
+ size_t shift = (ci->ptype) - types;
+ swig_type_info *ty = types_initial[shift];
+ size_t ldoc = (c - methods[i].ml_doc);
+ size_t lptr = strlen(ty->name)+2*sizeof(void*)+2;
+ char *ndoc = (char*)malloc(ldoc + lptr + 10);
+ if (ndoc) {
+ char *buff = ndoc;
+ strncpy(buff, methods[i].ml_doc, ldoc);
+ buff += ldoc;
+ strncpy(buff, "swig_ptr: ", 10);
+ buff += 10;
+ SWIG_PackVoidPtr(buff, ptr, ty->name, lptr);
+ methods[i].ml_doc = ndoc;
+ }
+ }
+ }
+ }
+ }
+ }
+
+#ifdef __cplusplus
+}
+#endif
+
+/* -----------------------------------------------------------------------------*
+ * Partial Init method
+ * -----------------------------------------------------------------------------*/
+
+#ifdef __cplusplus
+extern "C"
+#endif
+
+SWIGEXPORT
+#if PY_VERSION_HEX >= 0x03000000
+PyObject*
+#else
+void
+#endif
+SWIG_init(void) {
+ PyObject *m, *d, *md;
+#if PY_VERSION_HEX >= 0x03000000
+ static struct PyModuleDef SWIG_module = {
+# if PY_VERSION_HEX >= 0x03020000
+ PyModuleDef_HEAD_INIT,
+# else
+ {
+ PyObject_HEAD_INIT(NULL)
+ NULL, /* m_init */
+ 0, /* m_index */
+ NULL, /* m_copy */
+ },
+# endif
+ (char *) SWIG_name,
+ NULL,
+ -1,
+ SwigMethods,
+ NULL,
+ NULL,
+ NULL,
+ NULL
+ };
+#endif
+
+#if defined(SWIGPYTHON_BUILTIN)
+ static SwigPyClientData SwigPyObject_clientdata = {
+ 0, 0, 0, 0, 0, 0, 0
+ };
+ static PyGetSetDef this_getset_def = {
+ (char *)"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL
+ };
+ static SwigPyGetSet thisown_getset_closure = {
+ (PyCFunction) SwigPyObject_own,
+ (PyCFunction) SwigPyObject_own
+ };
+ static PyGetSetDef thisown_getset_def = {
+ (char *)"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure
+ };
+ PyObject *metatype_args;
+ PyTypeObject *builtin_pytype;
+ int builtin_base_count;
+ swig_type_info *builtin_basetype;
+ PyObject *tuple;
+ PyGetSetDescrObject *static_getset;
+ PyTypeObject *metatype;
+ SwigPyClientData *cd;
+ PyObject *public_interface, *public_symbol;
+ PyObject *this_descr;
+ PyObject *thisown_descr;
+ int i;
+
+ (void)builtin_pytype;
+ (void)builtin_base_count;
+ (void)builtin_basetype;
+ (void)tuple;
+ (void)static_getset;
+
+ /* metatype is used to implement static member variables. */
+ metatype_args = Py_BuildValue("(s(O){})", "SwigPyObjectType", &PyType_Type);
+ assert(metatype_args);
+ metatype = (PyTypeObject *) PyType_Type.tp_call((PyObject *) &PyType_Type, metatype_args, NULL);
+ assert(metatype);
+ Py_DECREF(metatype_args);
+ metatype->tp_setattro = (setattrofunc) &SwigPyObjectType_setattro;
+ assert(PyType_Ready(metatype) >= 0);
+#endif
+
+ /* Fix SwigMethods to carry the callback ptrs when needed */
+ SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial);
+
+#if PY_VERSION_HEX >= 0x03000000
+ m = PyModule_Create(&SWIG_module);
+#else
+ m = Py_InitModule((char *) SWIG_name, SwigMethods);
+#endif
+ md = d = PyModule_GetDict(m);
+ (void)md;
+
+ SWIG_InitializeModule(0);
+
+#ifdef SWIGPYTHON_BUILTIN
+ SwigPyObject_stype = SWIG_MangledTypeQuery("_p_SwigPyObject");
+ assert(SwigPyObject_stype);
+ cd = (SwigPyClientData*) SwigPyObject_stype->clientdata;
+ if (!cd) {
+ SwigPyObject_stype->clientdata = &SwigPyObject_clientdata;
+ SwigPyObject_clientdata.pytype = SwigPyObject_TypeOnce();
+ } else if (SwigPyObject_TypeOnce()->tp_basicsize != cd->pytype->tp_basicsize) {
+ PyErr_SetString(PyExc_RuntimeError, "Import error: attempted to load two incompatible swig-generated modules.");
+# if PY_VERSION_HEX >= 0x03000000
+ return NULL;
+# else
+ return;
+# endif
+ }
+
+ /* All objects have a 'this' attribute */
+ this_descr = PyDescr_NewGetSet(SwigPyObject_type(), &this_getset_def);
+ (void)this_descr;
+
+ /* All objects have a 'thisown' attribute */
+ thisown_descr = PyDescr_NewGetSet(SwigPyObject_type(), &thisown_getset_def);
+ (void)thisown_descr;
+
+ public_interface = PyList_New(0);
+ public_symbol = 0;
+ (void)public_symbol;
+
+ PyDict_SetItemString(md, "__all__", public_interface);
+ Py_DECREF(public_interface);
+ for (i = 0; SwigMethods[i].ml_name != NULL; ++i)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, SwigMethods[i].ml_name);
+ for (i = 0; swig_const_table[i].name != 0; ++i)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, swig_const_table[i].name);
+#endif
+
+ SWIG_InstallConstants(d,swig_const_table);
+
+#if PY_VERSION_HEX >= 0x03000000
+ return m;
+#else
+ return;
+#endif
+}
+
diff --git a/pocketsphinx-5prealpha/swig/python/test/Makefile b/pocketsphinx-5prealpha/swig/python/test/Makefile
index 5909db7..4789382 100644
--- a/pocketsphinx-5prealpha/swig/python/test/Makefile
+++ b/pocketsphinx-5prealpha/swig/python/test/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# swig/python/test/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -124,19 +124,19 @@ am__can_run_installinfo = \
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -164,7 +164,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -172,7 +172,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -206,15 +206,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/swig/python/test
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/swig/python/test
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/swig/python/test
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/swig/python/test
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -243,7 +243,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -300,8 +300,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -325,7 +325,10 @@ ctags CTAGS:
cscope cscopelist:
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/swig/python/test/Makefile.in b/pocketsphinx-5prealpha/swig/python/test/Makefile.in
index a454041..5d82667 100644
--- a/pocketsphinx-5prealpha/swig/python/test/Makefile.in
+++ b/pocketsphinx-5prealpha/swig/python/test/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -300,8 +300,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -325,7 +325,10 @@ ctags CTAGS:
cscope cscopelist:
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/test/Makefile b/pocketsphinx-5prealpha/test/Makefile
index 93e2f60..6cee1e3 100644
--- a/pocketsphinx-5prealpha/test/Makefile
+++ b/pocketsphinx-5prealpha/test/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -184,19 +184,19 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -224,7 +224,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -232,7 +232,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -266,15 +266,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/test
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/test
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/test
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/test
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -303,7 +303,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -438,8 +438,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -558,7 +558,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/test/Makefile.in b/pocketsphinx-5prealpha/test/Makefile.in
index 7aa6b30..68a8746 100644
--- a/pocketsphinx-5prealpha/test/Makefile.in
+++ b/pocketsphinx-5prealpha/test/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -438,8 +438,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -558,7 +558,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/test/regression/Makefile b/pocketsphinx-5prealpha/test/regression/Makefile
index 70b44c4..7200c90 100644
--- a/pocketsphinx-5prealpha/test/regression/Makefile
+++ b/pocketsphinx-5prealpha/test/regression/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/regression/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -328,19 +328,19 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
$(TEST_LOG_FLAGS)
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -368,7 +368,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -376,7 +376,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -410,15 +410,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/test/regression
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/test/regression
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/test/regression
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/test/regression
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -447,7 +447,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -503,8 +503,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -648,7 +648,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS:
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -712,7 +712,10 @@ test-tidigits-simple.sh.log: test-tidigits-simple.sh
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/test/regression/Makefile.in b/pocketsphinx-5prealpha/test/regression/Makefile.in
index 9792ead..6e7a3e1 100644
--- a/pocketsphinx-5prealpha/test/regression/Makefile.in
+++ b/pocketsphinx-5prealpha/test/regression/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -503,8 +503,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -648,7 +648,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS:
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -712,7 +712,10 @@ test-tidigits-simple.sh.log: test-tidigits-simple.sh
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/pocketsphinx-5prealpha/test/testfuncs.sh b/pocketsphinx-5prealpha/test/testfuncs.sh
index 9af5d08..756a7e1 100644
--- a/pocketsphinx-5prealpha/test/testfuncs.sh
+++ b/pocketsphinx-5prealpha/test/testfuncs.sh
@@ -1,7 +1,7 @@
# Utility functions and parameters for regression tests
# Predefined directories you may need
-# Stupid broken CMU Facilities autoconf doesn't do /home/pi/speech2text/pocketsphinx-5prealpha
+# Stupid broken CMU Facilities autoconf doesn't do /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
builddir=../".."
sourcedir=../".."
tests=$sourcedir/test
diff --git a/pocketsphinx-5prealpha/test/unit/Makefile b/pocketsphinx-5prealpha/test/unit/Makefile
index 50d468d..3e1fc9f 100644
--- a/pocketsphinx-5prealpha/test/unit/Makefile
+++ b/pocketsphinx-5prealpha/test/unit/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -253,7 +253,20 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_acmod.Po \
+ ./$(DEPDIR)/test_acmod_grow.Po ./$(DEPDIR)/test_alignment.Po \
+ ./$(DEPDIR)/test_allphone.Po ./$(DEPDIR)/test_dict.Po \
+ ./$(DEPDIR)/test_dict2pid.Po ./$(DEPDIR)/test_fsg.Po \
+ ./$(DEPDIR)/test_fwdflat.Po ./$(DEPDIR)/test_fwdtree.Po \
+ ./$(DEPDIR)/test_fwdtree_bestpath.Po ./$(DEPDIR)/test_init.Po \
+ ./$(DEPDIR)/test_jsgf.Po ./$(DEPDIR)/test_keyphrase.Po \
+ ./$(DEPDIR)/test_lattice.Po ./$(DEPDIR)/test_lm_read.Po \
+ ./$(DEPDIR)/test_mllr.Po ./$(DEPDIR)/test_nbest.Po \
+ ./$(DEPDIR)/test_posterior.Po ./$(DEPDIR)/test_ptm_mgau.Po \
+ ./$(DEPDIR)/test_reinit.Po ./$(DEPDIR)/test_senfh.Po \
+ ./$(DEPDIR)/test_set_search.Po ./$(DEPDIR)/test_simple.Po \
+ ./$(DEPDIR)/test_state_align.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -519,19 +532,19 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
CPP = gcc -E
-CPPFLAGS = -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
+CPPFLAGS = -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include -I/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/include/sphinxbase
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
@@ -559,7 +572,7 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
LD = /usr/bin/ld
-LDFLAGS = -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
+LDFLAGS = -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/lib -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxad -L/home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/src/libsphinxbase
LIBOBJS =
LIBS = -lsphinxbase
LIBTOOL = $(SHELL) $(top_builddir)/libtool
@@ -567,7 +580,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -601,15 +614,15 @@ SET_MAKE =
SHELL = /bin/bash
SPHINXBASE_CFLAGS =
SPHINXBASE_LIBS =
-SPHINXBASE_SWIG = /home/pi/speech2text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
+SPHINXBASE_SWIG = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/../sphinxbase-5prealpha/swig
STRIP = strip
SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
-abs_builddir = /home/pi/speech2text/pocketsphinx-5prealpha/test/unit
-abs_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha/test/unit
-abs_top_builddir = /home/pi/speech2text/pocketsphinx-5prealpha
-abs_top_srcdir = /home/pi/speech2text/pocketsphinx-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/test/unit
+abs_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/test/unit
+abs_top_builddir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -638,7 +651,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/pocketsphinx-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/pocketsphinx-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -700,8 +713,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -824,30 +837,36 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_acmod.Po
-include ./$(DEPDIR)/test_acmod_grow.Po
-include ./$(DEPDIR)/test_alignment.Po
-include ./$(DEPDIR)/test_allphone.Po
-include ./$(DEPDIR)/test_dict.Po
-include ./$(DEPDIR)/test_dict2pid.Po
-include ./$(DEPDIR)/test_fsg.Po
-include ./$(DEPDIR)/test_fwdflat.Po
-include ./$(DEPDIR)/test_fwdtree.Po
-include ./$(DEPDIR)/test_fwdtree_bestpath.Po
-include ./$(DEPDIR)/test_init.Po
-include ./$(DEPDIR)/test_jsgf.Po
-include ./$(DEPDIR)/test_keyphrase.Po
-include ./$(DEPDIR)/test_lattice.Po
-include ./$(DEPDIR)/test_lm_read.Po
-include ./$(DEPDIR)/test_mllr.Po
-include ./$(DEPDIR)/test_nbest.Po
-include ./$(DEPDIR)/test_posterior.Po
-include ./$(DEPDIR)/test_ptm_mgau.Po
-include ./$(DEPDIR)/test_reinit.Po
-include ./$(DEPDIR)/test_senfh.Po
-include ./$(DEPDIR)/test_set_search.Po
-include ./$(DEPDIR)/test_simple.Po
-include ./$(DEPDIR)/test_state_align.Po
+include ./$(DEPDIR)/test_acmod.Po # am--include-marker
+include ./$(DEPDIR)/test_acmod_grow.Po # am--include-marker
+include ./$(DEPDIR)/test_alignment.Po # am--include-marker
+include ./$(DEPDIR)/test_allphone.Po # am--include-marker
+include ./$(DEPDIR)/test_dict.Po # am--include-marker
+include ./$(DEPDIR)/test_dict2pid.Po # am--include-marker
+include ./$(DEPDIR)/test_fsg.Po # am--include-marker
+include ./$(DEPDIR)/test_fwdflat.Po # am--include-marker
+include ./$(DEPDIR)/test_fwdtree.Po # am--include-marker
+include ./$(DEPDIR)/test_fwdtree_bestpath.Po # am--include-marker
+include ./$(DEPDIR)/test_init.Po # am--include-marker
+include ./$(DEPDIR)/test_jsgf.Po # am--include-marker
+include ./$(DEPDIR)/test_keyphrase.Po # am--include-marker
+include ./$(DEPDIR)/test_lattice.Po # am--include-marker
+include ./$(DEPDIR)/test_lm_read.Po # am--include-marker
+include ./$(DEPDIR)/test_mllr.Po # am--include-marker
+include ./$(DEPDIR)/test_nbest.Po # am--include-marker
+include ./$(DEPDIR)/test_posterior.Po # am--include-marker
+include ./$(DEPDIR)/test_ptm_mgau.Po # am--include-marker
+include ./$(DEPDIR)/test_reinit.Po # am--include-marker
+include ./$(DEPDIR)/test_senfh.Po # am--include-marker
+include ./$(DEPDIR)/test_set_search.Po # am--include-marker
+include ./$(DEPDIR)/test_simple.Po # am--include-marker
+include ./$(DEPDIR)/test_state_align.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -1048,7 +1067,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -1252,7 +1271,10 @@ test_state_align.log: test_state_align$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -1328,7 +1350,30 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_acmod.Po
+ -rm -f ./$(DEPDIR)/test_acmod_grow.Po
+ -rm -f ./$(DEPDIR)/test_alignment.Po
+ -rm -f ./$(DEPDIR)/test_allphone.Po
+ -rm -f ./$(DEPDIR)/test_dict.Po
+ -rm -f ./$(DEPDIR)/test_dict2pid.Po
+ -rm -f ./$(DEPDIR)/test_fsg.Po
+ -rm -f ./$(DEPDIR)/test_fwdflat.Po
+ -rm -f ./$(DEPDIR)/test_fwdtree.Po
+ -rm -f ./$(DEPDIR)/test_fwdtree_bestpath.Po
+ -rm -f ./$(DEPDIR)/test_init.Po
+ -rm -f ./$(DEPDIR)/test_jsgf.Po
+ -rm -f ./$(DEPDIR)/test_keyphrase.Po
+ -rm -f ./$(DEPDIR)/test_lattice.Po
+ -rm -f ./$(DEPDIR)/test_lm_read.Po
+ -rm -f ./$(DEPDIR)/test_mllr.Po
+ -rm -f ./$(DEPDIR)/test_nbest.Po
+ -rm -f ./$(DEPDIR)/test_posterior.Po
+ -rm -f ./$(DEPDIR)/test_ptm_mgau.Po
+ -rm -f ./$(DEPDIR)/test_reinit.Po
+ -rm -f ./$(DEPDIR)/test_senfh.Po
+ -rm -f ./$(DEPDIR)/test_set_search.Po
+ -rm -f ./$(DEPDIR)/test_simple.Po
+ -rm -f ./$(DEPDIR)/test_state_align.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -1374,7 +1419,30 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_acmod.Po
+ -rm -f ./$(DEPDIR)/test_acmod_grow.Po
+ -rm -f ./$(DEPDIR)/test_alignment.Po
+ -rm -f ./$(DEPDIR)/test_allphone.Po
+ -rm -f ./$(DEPDIR)/test_dict.Po
+ -rm -f ./$(DEPDIR)/test_dict2pid.Po
+ -rm -f ./$(DEPDIR)/test_fsg.Po
+ -rm -f ./$(DEPDIR)/test_fwdflat.Po
+ -rm -f ./$(DEPDIR)/test_fwdtree.Po
+ -rm -f ./$(DEPDIR)/test_fwdtree_bestpath.Po
+ -rm -f ./$(DEPDIR)/test_init.Po
+ -rm -f ./$(DEPDIR)/test_jsgf.Po
+ -rm -f ./$(DEPDIR)/test_keyphrase.Po
+ -rm -f ./$(DEPDIR)/test_lattice.Po
+ -rm -f ./$(DEPDIR)/test_lm_read.Po
+ -rm -f ./$(DEPDIR)/test_mllr.Po
+ -rm -f ./$(DEPDIR)/test_nbest.Po
+ -rm -f ./$(DEPDIR)/test_posterior.Po
+ -rm -f ./$(DEPDIR)/test_ptm_mgau.Po
+ -rm -f ./$(DEPDIR)/test_reinit.Po
+ -rm -f ./$(DEPDIR)/test_senfh.Po
+ -rm -f ./$(DEPDIR)/test_set_search.Po
+ -rm -f ./$(DEPDIR)/test_simple.Po
+ -rm -f ./$(DEPDIR)/test_state_align.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1395,16 +1463,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/pocketsphinx-5prealpha/test/unit/Makefile.in b/pocketsphinx-5prealpha/test/unit/Makefile.in
index 7e8f525..de1dfea 100644
--- a/pocketsphinx-5prealpha/test/unit/Makefile.in
+++ b/pocketsphinx-5prealpha/test/unit/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -253,7 +253,20 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_acmod.Po \
+ ./$(DEPDIR)/test_acmod_grow.Po ./$(DEPDIR)/test_alignment.Po \
+ ./$(DEPDIR)/test_allphone.Po ./$(DEPDIR)/test_dict.Po \
+ ./$(DEPDIR)/test_dict2pid.Po ./$(DEPDIR)/test_fsg.Po \
+ ./$(DEPDIR)/test_fwdflat.Po ./$(DEPDIR)/test_fwdtree.Po \
+ ./$(DEPDIR)/test_fwdtree_bestpath.Po ./$(DEPDIR)/test_init.Po \
+ ./$(DEPDIR)/test_jsgf.Po ./$(DEPDIR)/test_keyphrase.Po \
+ ./$(DEPDIR)/test_lattice.Po ./$(DEPDIR)/test_lm_read.Po \
+ ./$(DEPDIR)/test_mllr.Po ./$(DEPDIR)/test_nbest.Po \
+ ./$(DEPDIR)/test_posterior.Po ./$(DEPDIR)/test_ptm_mgau.Po \
+ ./$(DEPDIR)/test_reinit.Po ./$(DEPDIR)/test_senfh.Po \
+ ./$(DEPDIR)/test_set_search.Po ./$(DEPDIR)/test_simple.Po \
+ ./$(DEPDIR)/test_state_align.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -700,8 +713,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -824,30 +837,36 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_acmod.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_acmod_grow.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_alignment.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_allphone.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_dict.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_dict2pid.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fsg.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fwdflat.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fwdtree.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fwdtree_bestpath.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_init.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_jsgf.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_keyphrase.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lattice.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_read.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_mllr.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_nbest.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_posterior.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ptm_mgau.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_reinit.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_senfh.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_set_search.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_simple.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_state_align.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_acmod.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_acmod_grow.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_alignment.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_allphone.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_dict.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_dict2pid.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fsg.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fwdflat.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fwdtree.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fwdtree_bestpath.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_init.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_jsgf.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_keyphrase.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lattice.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_read.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_mllr.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_nbest.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_posterior.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ptm_mgau.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_reinit.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_senfh.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_set_search.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_simple.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_state_align.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -1048,7 +1067,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -1252,7 +1271,10 @@ test_state_align.log: test_state_align$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -1328,7 +1350,30 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_acmod.Po
+ -rm -f ./$(DEPDIR)/test_acmod_grow.Po
+ -rm -f ./$(DEPDIR)/test_alignment.Po
+ -rm -f ./$(DEPDIR)/test_allphone.Po
+ -rm -f ./$(DEPDIR)/test_dict.Po
+ -rm -f ./$(DEPDIR)/test_dict2pid.Po
+ -rm -f ./$(DEPDIR)/test_fsg.Po
+ -rm -f ./$(DEPDIR)/test_fwdflat.Po
+ -rm -f ./$(DEPDIR)/test_fwdtree.Po
+ -rm -f ./$(DEPDIR)/test_fwdtree_bestpath.Po
+ -rm -f ./$(DEPDIR)/test_init.Po
+ -rm -f ./$(DEPDIR)/test_jsgf.Po
+ -rm -f ./$(DEPDIR)/test_keyphrase.Po
+ -rm -f ./$(DEPDIR)/test_lattice.Po
+ -rm -f ./$(DEPDIR)/test_lm_read.Po
+ -rm -f ./$(DEPDIR)/test_mllr.Po
+ -rm -f ./$(DEPDIR)/test_nbest.Po
+ -rm -f ./$(DEPDIR)/test_posterior.Po
+ -rm -f ./$(DEPDIR)/test_ptm_mgau.Po
+ -rm -f ./$(DEPDIR)/test_reinit.Po
+ -rm -f ./$(DEPDIR)/test_senfh.Po
+ -rm -f ./$(DEPDIR)/test_set_search.Po
+ -rm -f ./$(DEPDIR)/test_simple.Po
+ -rm -f ./$(DEPDIR)/test_state_align.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -1374,7 +1419,30 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_acmod.Po
+ -rm -f ./$(DEPDIR)/test_acmod_grow.Po
+ -rm -f ./$(DEPDIR)/test_alignment.Po
+ -rm -f ./$(DEPDIR)/test_allphone.Po
+ -rm -f ./$(DEPDIR)/test_dict.Po
+ -rm -f ./$(DEPDIR)/test_dict2pid.Po
+ -rm -f ./$(DEPDIR)/test_fsg.Po
+ -rm -f ./$(DEPDIR)/test_fwdflat.Po
+ -rm -f ./$(DEPDIR)/test_fwdtree.Po
+ -rm -f ./$(DEPDIR)/test_fwdtree_bestpath.Po
+ -rm -f ./$(DEPDIR)/test_init.Po
+ -rm -f ./$(DEPDIR)/test_jsgf.Po
+ -rm -f ./$(DEPDIR)/test_keyphrase.Po
+ -rm -f ./$(DEPDIR)/test_lattice.Po
+ -rm -f ./$(DEPDIR)/test_lm_read.Po
+ -rm -f ./$(DEPDIR)/test_mllr.Po
+ -rm -f ./$(DEPDIR)/test_nbest.Po
+ -rm -f ./$(DEPDIR)/test_posterior.Po
+ -rm -f ./$(DEPDIR)/test_ptm_mgau.Po
+ -rm -f ./$(DEPDIR)/test_reinit.Po
+ -rm -f ./$(DEPDIR)/test_senfh.Po
+ -rm -f ./$(DEPDIR)/test_set_search.Po
+ -rm -f ./$(DEPDIR)/test_simple.Po
+ -rm -f ./$(DEPDIR)/test_state_align.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1395,16 +1463,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/process-output.py b/process-output.py
new file mode 100644
index 0000000..d78154d
--- /dev/null
+++ b/process-output.py
@@ -0,0 +1,20 @@
+import sys
+import os
+from datetime import datetime
+
+speech_rec_lib = os.environ['SPEECH_RECOGNITION']
+def log_speech_input(speech_input):
+ with open(speech_rec_lib + "/output/log.txt", 'a') as f:
+ line = speech_input
+ time = datetime.now().strftime("%m/%d/%Y, %H:%M:%S")
+ line = time + ': ' + line
+ line = line.strip()
+ f.write(line + '\n')
+
+def process_speech_input(speech_input):
+ print(speech_input)
+ log_speech_input(speech_input)
+
+if __name__ == "__main__":
+ speech_input = sys.stdin.read()
+ process_speech_input(speech_input)
diff --git a/record.py b/record.py
new file mode 100644
index 0000000..64f8d21
--- /dev/null
+++ b/record.py
@@ -0,0 +1,135 @@
+"""INITIAL CODE FROM: https://stackoverflow.com/questions/892199/detect-record-audio-in-python"""
+
+
+from sys import byteorder
+from array import array
+from struct import pack
+import pyaudio
+import signal
+import wave
+
+THRESHOLD = 1100
+CHUNK_SIZE = 1024
+FORMAT = pyaudio.paInt16
+RATE = 16000
+AMOUNT_OF_SILENCE = 15 # represents an arbitrary unit. the greater this value, the "longer" period of constant silence is required before the recording stops
+def is_silent(snd_data):
+ "Returns 'True' if below the 'silent' threshold"
+ return max(snd_data) < THRESHOLD
+
+def normalize(snd_data):
+ "Average the volume out"
+ MAXIMUM = 16384
+ times = float(MAXIMUM)/max(abs(i) for i in snd_data)
+
+ r = array('h')
+ for i in snd_data:
+ r.append(int(i*times))
+ return r
+
+def trim(snd_data):
+ "Trim the blank spots at the start and end"
+ def _trim(snd_data):
+ snd_started = False
+ r = array('h')
+
+ for i in snd_data:
+ if not snd_started and abs(i)>THRESHOLD:
+ snd_started = True
+ r.append(i)
+
+ elif snd_started:
+ r.append(i)
+ return r
+
+ # Trim to the left
+ snd_data = _trim(snd_data)
+
+ # Trim to the right
+ snd_data.reverse()
+ snd_data = _trim(snd_data)
+ snd_data.reverse()
+ return snd_data
+
+def add_silence(snd_data, seconds):
+ "Add silence to the start and end of 'snd_data' of length 'seconds' (float)"
+ r = array('h', [0 for i in xrange(int(seconds*RATE))])
+ r.extend(snd_data)
+ r.extend([0 for i in xrange(int(seconds*RATE))])
+ return r
+
+def record():
+ """
+ Record a word or words from the microphone and
+ return the data as an array of signed shorts.
+
+ Normalizes the audio, trims silence from the
+ start and end, and pads with 0.5 seconds of
+ blank sound to make sure VLC et al can play
+ it without getting chopped off.
+ """
+ p = pyaudio.PyAudio()
+ stream = p.open(format=FORMAT, channels=1, rate=RATE,
+ input=True, output=True,
+ frames_per_buffer=CHUNK_SIZE)
+ num_silent = 0
+ snd_started = False # if true, the recording will not wait for the user to start talking
+
+ # handle the user force closing the script without the required amount of silence
+ global interrupted
+ interrupted = False
+ def interrupt_handler(signal, frame):
+ global interrupted
+ interrupted = True
+ signal.signal(signal.SIGINT, interrupt_handler)
+
+ r = array('h')
+
+ while 1:
+ # little endian, signed short
+ snd_data = array('h', stream.read(CHUNK_SIZE))
+ if byteorder == 'big':
+ snd_data.byteswap()
+ r.extend(snd_data)
+
+ silent = is_silent(snd_data)
+
+ if silent and snd_started:
+ num_silent += 1 # leaky bucket
+ elif not silent and snd_started:
+ if num_silent > 0:
+ num_silent -= 1 # leaky bucket
+ elif not silent and not snd_started:
+ print("User started to speak")
+ snd_started = True
+ if (snd_started and num_silent > AMOUNT_OF_SILENCE) or interrupted:
+ break
+
+ sample_width = p.get_sample_size(FORMAT)
+ stream.stop_stream()
+ stream.close()
+ p.terminate()
+
+ r = normalize(r)
+ r = trim(r)
+ r = add_silence(r, 0.5)
+ return sample_width, r
+
+def record_to_file(path):
+ "Records from the microphone and outputs the resulting data to 'path'"
+ sample_width, data = record()
+ data = pack('<' + ('h'*len(data)), *data)
+
+ wf = wave.open(path, 'wb')
+ wf.setnchannels(1)
+ wf.setsampwidth(sample_width)
+ wf.setframerate(RATE)
+ wf.writeframes(data)
+ print("Done recording")
+ return (data, wf)
+
+def start_recording():
+ return record_to_file('./inputs/raw_recording.wav') # returns raw data AND OPEN wave file
+if __name__ == "__main__":
+ start_recording()
+
diff --git a/snowboy-decode b/snowboy-decode
new file mode 100755
index 0000000..7514170
Binary files /dev/null and b/snowboy-decode differ
diff --git a/snowboy-decode.c b/snowboy-decode.c
new file mode 100644
index 0000000..8628af8
--- /dev/null
+++ b/snowboy-decode.c
@@ -0,0 +1,26 @@
+#include
+#include
+#include
+#define BILLION 1000000000.0;
+
+
+int main(void) {
+ struct timespec start, end;
+ if (getenv("SPEECH_RECOGNITION") == NULL) {
+ system("echo Please set the SPEECH_RECOGNITION environment variable to point to the git repository");
+ return 1;
+ }
+ system("export LD_LIBRARY_PATH=/usr/local/lib");
+ while (system("python klauba.py") == 0) {
+ system("echo Starting to decode...");
+ clock_gettime(CLOCK_REALTIME, &start);
+ system("\
+ pocketsphinx_continuous \
+ -infile ./inputs/raw_recording.wav \
+ -remove_noise yes \
+ -lm ./models/corpus/Corpus_V3/100.lm \
+ -dict ./models/corpus/Corpus_V3/100.dic \
+ 2>./output/decode-details.log | python $SPEECH_RECOGNITION/process-output.py");
+ system("echo Done decoding...");
+ }
+}
diff --git a/sphinxbase-5prealpha/Makefile b/sphinxbase-5prealpha/Makefile
index 5d59206..baeb31f 100644
--- a/sphinxbase-5prealpha/Makefile
+++ b/sphinxbase-5prealpha/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -169,7 +169,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- cscope distdir dist dist-all distcheck
+ cscope distdir distdir-am dist dist-all distcheck
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -236,14 +236,14 @@ distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -277,7 +277,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -313,10 +313,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -348,7 +348,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -424,8 +424,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -575,7 +575,10 @@ distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
$(am__remove_distdir)
test -d "$(distdir)" || mkdir "$(distdir)"
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
@@ -640,7 +643,7 @@ distdir: $(DISTFILES)
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+ tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
@@ -666,7 +669,7 @@ dist-shar: distdir
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
+ shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
@@ -684,7 +687,7 @@ dist dist-all:
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
@@ -694,7 +697,7 @@ distcheck: dist
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
esac
diff --git a/sphinxbase-5prealpha/Makefile.in b/sphinxbase-5prealpha/Makefile.in
index f237ce6..068d7e5 100644
--- a/sphinxbase-5prealpha/Makefile.in
+++ b/sphinxbase-5prealpha/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -169,7 +169,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- cscope distdir dist dist-all distcheck
+ cscope distdir distdir-am dist dist-all distcheck
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -424,8 +424,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -575,7 +575,10 @@ distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
$(am__remove_distdir)
test -d "$(distdir)" || mkdir "$(distdir)"
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
@@ -640,7 +643,7 @@ distdir: $(DISTFILES)
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+ tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
@@ -666,7 +669,7 @@ dist-shar: distdir
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
+ shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
@@ -684,7 +687,7 @@ dist dist-all:
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
@@ -694,7 +697,7 @@ distcheck: dist
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
- GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
+ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
esac
diff --git a/sphinxbase-5prealpha/aclocal.m4 b/sphinxbase-5prealpha/aclocal.m4
index 849e2db..efa22b9 100644
--- a/sphinxbase-5prealpha/aclocal.m4
+++ b/sphinxbase-5prealpha/aclocal.m4
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.15 -*- Autoconf -*-
+# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -20,7 +20,7 @@ You have another version of autoconf. It may work, but is not guaranteed to.
If you have problems, you may need to regenerate the build system entirely.
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
-# Copyright (C) 2002-2014 Free Software Foundation, Inc.
+# Copyright (C) 2002-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -32,10 +32,10 @@ To do so, use the procedure documented by the package, typically 'autoreconf'.])
# generated from the m4 files accompanying Automake X.Y.
# (This private macro should not be called outside this file.)
AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.15'
+[am__api_version='1.16'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro.
-m4_if([$1], [1.15], [],
+m4_if([$1], [1.16.1], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
@@ -51,14 +51,14 @@ m4_define([_AM_AUTOCONF_VERSION], [])
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.15])dnl
+[AM_AUTOMAKE_VERSION([1.16.1])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -110,7 +110,7 @@ am_aux_dir=`cd "$ac_aux_dir" && pwd`
# AM_CONDITIONAL -*- Autoconf -*-
-# Copyright (C) 1997-2014 Free Software Foundation, Inc.
+# Copyright (C) 1997-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -141,7 +141,7 @@ AC_CONFIG_COMMANDS_PRE(
Usually this means the macro was only invoked conditionally.]])
fi])])
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -332,13 +332,12 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl
# Generate code to set up dependency tracking. -*- Autoconf -*-
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
-
# _AM_OUTPUT_DEPENDENCY_COMMANDS
# ------------------------------
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
@@ -346,49 +345,41 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ AS_CASE([$CONFIG_FILES],
+ [*\'*], [eval set x "$CONFIG_FILES"],
+ [*], [set x $CONFIG_FILES])
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`AS_DIRNAME("$mf")`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`AS_DIRNAME(["$file"])`
- AS_MKDIR_P([$dirpart/$fdir])
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`AS_DIRNAME(["$am_mf"])`
+ am_filepart=`AS_BASENAME(["$am_mf"])`
+ AM_RUN_LOG([cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles]) || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).])
+ fi
+ AS_UNSET([am_dirpart])
+ AS_UNSET([am_filepart])
+ AS_UNSET([am_mf])
+ AS_UNSET([am_rc])
+ rm -f conftest-deps.mk
}
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
@@ -397,18 +388,17 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
# -----------------------------
# This macro should only be invoked once -- use via AC_REQUIRE.
#
-# This code is only required when automatic dependency tracking
-# is enabled. FIXME. This creates each '.P' file that we will
-# need in order to bootstrap the dependency handling code.
+# This code is only required when automatic dependency tracking is enabled.
+# This creates each '.Po' and '.Plo' makefile fragment that we'll need in
+# order to bootstrap the dependency handling code.
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
[AC_CONFIG_COMMANDS([depfiles],
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
-])
+ [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
# Do all the work for Automake. -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -495,8 +485,8 @@ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
# We need awk for the "check" target (and possibly the TAP driver). The
# system "awk" is bad on some platforms.
@@ -563,7 +553,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -605,7 +595,7 @@ for _am_header in $config_headers :; do
done
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -626,7 +616,7 @@ if test x"${install_sh+set}" != xset; then
fi
AC_SUBST([install_sh])])
-# Copyright (C) 2003-2014 Free Software Foundation, Inc.
+# Copyright (C) 2003-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -647,7 +637,7 @@ AC_SUBST([am__leading_dot])])
# Check to see how 'make' treats includes. -*- Autoconf -*-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -655,49 +645,42 @@ AC_SUBST([am__leading_dot])])
# AM_MAKE_INCLUDE()
# -----------------
-# Check to see how make treats includes.
+# Check whether make has an 'include' directive that can support all
+# the idioms we need for our automatic dependency tracking code.
AC_DEFUN([AM_MAKE_INCLUDE],
-[am_make=${MAKE-make}
-cat > confinc << 'END'
+[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-AC_MSG_CHECKING([for style of include used by $am_make])
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
- ;;
- esac
-fi
-AC_SUBST([am__include])
-AC_SUBST([am__quote])
-AC_MSG_RESULT([$_am_result])
-rm -f confinc confmf
-])
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
+ AS_CASE([$?:`cat confinc.out 2>/dev/null`],
+ ['0:this is the am__doit target'],
+ [AS_CASE([$s],
+ [BSD], [am__include='.include' am__quote='"'],
+ [am__include='include' am__quote=''])])
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+AC_MSG_RESULT([${_am_result}])
+AC_SUBST([am__include])])
+AC_SUBST([am__quote])])
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
-# Copyright (C) 1997-2014 Free Software Foundation, Inc.
+# Copyright (C) 1997-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -736,7 +719,7 @@ fi
# Helper functions for option handling. -*- Autoconf -*-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -765,7 +748,7 @@ AC_DEFUN([_AM_SET_OPTIONS],
AC_DEFUN([_AM_IF_OPTION],
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -812,7 +795,7 @@ AC_LANG_POP([C])])
# For backward compatibility.
AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -846,8 +829,11 @@ AC_DEFUN([AM_PATH_PYTHON],
dnl Find a Python interpreter. Python versions prior to 2.0 are not
dnl supported. (2.0 was released on October 16, 2000).
m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
-[python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl
- python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0])
+[python python2 python3 dnl
+ python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 dnl
+ python3.2 python3.1 python3.0 dnl
+ python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 dnl
+ python2.0])
AC_ARG_VAR([PYTHON], [the Python interpreter])
@@ -1047,7 +1033,7 @@ for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
sys.exit(sys.hexversion < minverhex)"
AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1066,7 +1052,7 @@ AC_DEFUN([AM_RUN_LOG],
# Check to make sure that the build environment is sane. -*- Autoconf -*-
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1147,7 +1133,7 @@ AC_CONFIG_COMMANDS_PRE(
rm -f conftest.file
])
-# Copyright (C) 2009-2014 Free Software Foundation, Inc.
+# Copyright (C) 2009-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1207,7 +1193,7 @@ AC_SUBST([AM_BACKSLASH])dnl
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
])
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1235,7 +1221,7 @@ fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
AC_SUBST([INSTALL_STRIP_PROGRAM])])
-# Copyright (C) 2006-2014 Free Software Foundation, Inc.
+# Copyright (C) 2006-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -1254,7 +1240,7 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
# Check how to create a tarball. -*- Autoconf -*-
-# Copyright (C) 2004-2014 Free Software Foundation, Inc.
+# Copyright (C) 2004-2018 Free Software Foundation, Inc.
#
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
diff --git a/sphinxbase-5prealpha/autom4te.cache/output.0 b/sphinxbase-5prealpha/autom4te.cache/output.0
index aff7e65..69ecfa1 100644
--- a/sphinxbase-5prealpha/autom4te.cache/output.0
+++ b/sphinxbase-5prealpha/autom4te.cache/output.0
@@ -695,7 +695,6 @@ am__nodep
AMDEPBACKSLASH
AMDEP_FALSE
AMDEP_TRUE
-am__quote
am__include
DEPDIR
OBJEXT
@@ -778,7 +777,8 @@ PACKAGE_VERSION
PACKAGE_TARNAME
PACKAGE_NAME
PATH_SEPARATOR
-SHELL'
+SHELL
+am__quote'
ac_subst_files=''
ac_user_opts='
enable_option_checking
@@ -2508,7 +2508,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers include/config.h include/sphinx_config.h"
-am__api_version='1.15'
+am__api_version='1.16'
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
@@ -3044,8 +3044,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
mkdir_p='$(MKDIR_P)'
# We need awk for the "check" target (and possibly the TAP driver). The
@@ -3096,7 +3096,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -3186,45 +3186,45 @@ DEPDIR="${am__leading_dot}deps"
ac_config_commands="$ac_config_commands depfiles"
-
-am_make=${MAKE-make}
-cat > confinc << 'END'
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
+$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
+ (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ case $?:`cat confinc.out 2>/dev/null` in @%:@(
+ '0:this is the am__doit target') :
+ case $s in @%:@(
+ BSD) :
+ am__include='.include' am__quote='"' ;; @%:@(
+ *) :
+ am__include='include' am__quote='' ;;
+esac ;; @%:@(
+ *) :
;;
- esac
-fi
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-$as_echo "$_am_result" >&6; }
-rm -f confinc confmf
+esac
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
+$as_echo "${_am_result}" >&6; }
@%:@ Check whether --enable-dependency-tracking was given.
if test "${enable_dependency_tracking+set}" = set; then :
@@ -7398,11 +7398,8 @@ _LT_EOF
test $ac_status = 0; }; then
# Now try to grab the symbols.
nlist=conftest.nm
- if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5
- (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && test -s "$nlist"; then
+ $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5
+ if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
mv -f "$nlist"T "$nlist"
@@ -14427,7 +14424,7 @@ if ${am_cv_pathless_PYTHON+:} false; then :
$as_echo_n "(cached) " >&6
else
- for am_cv_pathless_PYTHON in python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
+ for am_cv_pathless_PYTHON in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
test "$am_cv_pathless_PYTHON" = none && break
prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
@@ -15869,7 +15866,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
#
# INIT-COMMANDS
#
-AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
+AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -16805,29 +16802,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ case $CONFIG_FILES in @%:@(
+ *\'*) :
+ eval set x "$CONFIG_FILES" ;; @%:@(
+ *) :
+ set x $CONFIG_FILES ;; @%:@(
+ *) :
+ ;;
+esac
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`$as_dirname -- "$am_mf" ||
+$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$am_mf" : 'X\(//\)[^/]' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$am_mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -16845,53 +16848,48 @@ $as_echo X"$mf" |
q
}
s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
+ am_filepart=`$as_basename -- "$am_mf" ||
+$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$am_mf" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
- /^X\(\/\/\)$/{
+ /^X\/\(\/\/\)$/{
s//\1/
q
}
- /^X\(\/\).*/{
+ /^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles" >&5
+ (cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ { am_dirpart=; unset am_dirpart;}
+ { am_filepart=; unset am_filepart;}
+ { am_mf=; unset am_mf;}
+ { am_rc=; unset am_rc;}
+ rm -f conftest-deps.mk
}
;;
"libtool":C)
@@ -16909,7 +16907,6 @@ $as_echo X"$file" |
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
diff --git a/sphinxbase-5prealpha/autom4te.cache/output.1 b/sphinxbase-5prealpha/autom4te.cache/output.1
index aff7e65..69ecfa1 100644
--- a/sphinxbase-5prealpha/autom4te.cache/output.1
+++ b/sphinxbase-5prealpha/autom4te.cache/output.1
@@ -695,7 +695,6 @@ am__nodep
AMDEPBACKSLASH
AMDEP_FALSE
AMDEP_TRUE
-am__quote
am__include
DEPDIR
OBJEXT
@@ -778,7 +777,8 @@ PACKAGE_VERSION
PACKAGE_TARNAME
PACKAGE_NAME
PATH_SEPARATOR
-SHELL'
+SHELL
+am__quote'
ac_subst_files=''
ac_user_opts='
enable_option_checking
@@ -2508,7 +2508,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers include/config.h include/sphinx_config.h"
-am__api_version='1.15'
+am__api_version='1.16'
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
@@ -3044,8 +3044,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
mkdir_p='$(MKDIR_P)'
# We need awk for the "check" target (and possibly the TAP driver). The
@@ -3096,7 +3096,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -3186,45 +3186,45 @@ DEPDIR="${am__leading_dot}deps"
ac_config_commands="$ac_config_commands depfiles"
-
-am_make=${MAKE-make}
-cat > confinc << 'END'
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
+$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
+ (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ case $?:`cat confinc.out 2>/dev/null` in @%:@(
+ '0:this is the am__doit target') :
+ case $s in @%:@(
+ BSD) :
+ am__include='.include' am__quote='"' ;; @%:@(
+ *) :
+ am__include='include' am__quote='' ;;
+esac ;; @%:@(
+ *) :
;;
- esac
-fi
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-$as_echo "$_am_result" >&6; }
-rm -f confinc confmf
+esac
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
+$as_echo "${_am_result}" >&6; }
@%:@ Check whether --enable-dependency-tracking was given.
if test "${enable_dependency_tracking+set}" = set; then :
@@ -7398,11 +7398,8 @@ _LT_EOF
test $ac_status = 0; }; then
# Now try to grab the symbols.
nlist=conftest.nm
- if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5
- (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && test -s "$nlist"; then
+ $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5
+ if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
mv -f "$nlist"T "$nlist"
@@ -14427,7 +14424,7 @@ if ${am_cv_pathless_PYTHON+:} false; then :
$as_echo_n "(cached) " >&6
else
- for am_cv_pathless_PYTHON in python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
+ for am_cv_pathless_PYTHON in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
test "$am_cv_pathless_PYTHON" = none && break
prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
@@ -15869,7 +15866,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
#
# INIT-COMMANDS
#
-AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
+AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -16805,29 +16802,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ case $CONFIG_FILES in @%:@(
+ *\'*) :
+ eval set x "$CONFIG_FILES" ;; @%:@(
+ *) :
+ set x $CONFIG_FILES ;; @%:@(
+ *) :
+ ;;
+esac
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`$as_dirname -- "$am_mf" ||
+$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$am_mf" : 'X\(//\)[^/]' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$am_mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -16845,53 +16848,48 @@ $as_echo X"$mf" |
q
}
s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
+ am_filepart=`$as_basename -- "$am_mf" ||
+$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$am_mf" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
- /^X\(\/\/\)$/{
+ /^X\/\(\/\/\)$/{
s//\1/
q
}
- /^X\(\/\).*/{
+ /^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles" >&5
+ (cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ { am_dirpart=; unset am_dirpart;}
+ { am_filepart=; unset am_filepart;}
+ { am_mf=; unset am_mf;}
+ { am_rc=; unset am_rc;}
+ rm -f conftest-deps.mk
}
;;
"libtool":C)
@@ -16909,7 +16907,6 @@ $as_echo X"$file" |
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
diff --git a/sphinxbase-5prealpha/autom4te.cache/requests b/sphinxbase-5prealpha/autom4te.cache/requests
index ead23ac..59764b2 100644
--- a/sphinxbase-5prealpha/autom4te.cache/requests
+++ b/sphinxbase-5prealpha/autom4te.cache/requests
@@ -1,4 +1,4 @@
-# This file was generated by Autom4te Fri Oct 23 20:57:39 UTC 2015.
+# This file was generated by Autom4te Sun Aug 20 18:29:13 UTC 2017.
# It contains the lists of macros which have been traced.
# It can be safely removed.
@@ -12,28 +12,28 @@
[
'/usr/share/autoconf/autoconf/autoconf.m4f',
'-',
- '/usr/share/aclocal-1.15/internal/ac-config-macro-dirs.m4',
+ '/usr/share/aclocal-1.16/internal/ac-config-macro-dirs.m4',
'/usr/share/aclocal/ltargz.m4',
'/usr/share/aclocal/ltdl.m4',
- '/usr/share/aclocal-1.15/amversion.m4',
- '/usr/share/aclocal-1.15/auxdir.m4',
- '/usr/share/aclocal-1.15/cond.m4',
- '/usr/share/aclocal-1.15/depend.m4',
- '/usr/share/aclocal-1.15/depout.m4',
- '/usr/share/aclocal-1.15/init.m4',
- '/usr/share/aclocal-1.15/install-sh.m4',
- '/usr/share/aclocal-1.15/lead-dot.m4',
- '/usr/share/aclocal-1.15/make.m4',
- '/usr/share/aclocal-1.15/missing.m4',
- '/usr/share/aclocal-1.15/options.m4',
- '/usr/share/aclocal-1.15/prog-cc-c-o.m4',
- '/usr/share/aclocal-1.15/python.m4',
- '/usr/share/aclocal-1.15/runlog.m4',
- '/usr/share/aclocal-1.15/sanity.m4',
- '/usr/share/aclocal-1.15/silent.m4',
- '/usr/share/aclocal-1.15/strip.m4',
- '/usr/share/aclocal-1.15/substnot.m4',
- '/usr/share/aclocal-1.15/tar.m4',
+ '/usr/share/aclocal-1.16/amversion.m4',
+ '/usr/share/aclocal-1.16/auxdir.m4',
+ '/usr/share/aclocal-1.16/cond.m4',
+ '/usr/share/aclocal-1.16/depend.m4',
+ '/usr/share/aclocal-1.16/depout.m4',
+ '/usr/share/aclocal-1.16/init.m4',
+ '/usr/share/aclocal-1.16/install-sh.m4',
+ '/usr/share/aclocal-1.16/lead-dot.m4',
+ '/usr/share/aclocal-1.16/make.m4',
+ '/usr/share/aclocal-1.16/missing.m4',
+ '/usr/share/aclocal-1.16/options.m4',
+ '/usr/share/aclocal-1.16/prog-cc-c-o.m4',
+ '/usr/share/aclocal-1.16/python.m4',
+ '/usr/share/aclocal-1.16/runlog.m4',
+ '/usr/share/aclocal-1.16/sanity.m4',
+ '/usr/share/aclocal-1.16/silent.m4',
+ '/usr/share/aclocal-1.16/strip.m4',
+ '/usr/share/aclocal-1.16/substnot.m4',
+ '/usr/share/aclocal-1.16/tar.m4',
'm4/ax_pkg_swig.m4',
'm4/ax_python_devel.m4',
'm4/libtool.m4',
@@ -44,190 +44,190 @@
'configure.ac'
],
{
- 'AC_LIBTOOL_GCJ' => 1,
- 'AC_DEFUN_ONCE' => 1,
+ 'AC_LIBLTDL_CONVENIENCE' => 1,
+ 'AC_LTDL_DLSYM_USCORE' => 1,
+ '_AM_PROG_TAR' => 1,
+ '_AM_PROG_CC_C_O' => 1,
+ 'AM_PROG_INSTALL_SH' => 1,
+ '_LT_AC_LANG_GCJ_CONFIG' => 1,
+ 'LTDL_CONVENIENCE' => 1,
+ 'LT_SYS_MODULE_PATH' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
+ 'AC_LIBTOOL_PROG_CC_C_O' => 1,
+ '_AM_IF_OPTION' => 1,
+ 'AM_ENABLE_SHARED' => 1,
+ 'AC_LIBTOOL_CONFIG' => 1,
+ 'LTDL_INSTALLABLE' => 1,
+ '_LT_PATH_TOOL_PREFIX' => 1,
+ 'AC_PROG_LD_RELOAD_FLAG' => 1,
+ 'LT_LIB_M' => 1,
+ 'LT_SYS_DLSEARCH_PATH' => 1,
+ 'AC_DISABLE_FAST_INSTALL' => 1,
+ 'AM_ENABLE_STATIC' => 1,
+ 'AM_CONDITIONAL' => 1,
'_LT_AC_LOCK' => 1,
- '_LT_LINKER_OPTION' => 1,
- 'AC_LIBTOOL_CXX' => 1,
- '_LT_PROG_FC' => 1,
- 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
- '_LT_CC_BASENAME' => 1,
- 'AM_SILENT_RULES' => 1,
- 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
- 'AC_LTDL_DLLIB' => 1,
+ 'AM_MISSING_HAS_RUN' => 1,
'AM_PROG_INSTALL_STRIP' => 1,
- 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
- 'AC_LTDL_SHLIBPATH' => 1,
+ '_LT_AC_LANG_RC_CONFIG' => 1,
+ '_AM_AUTOCONF_VERSION' => 1,
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
- '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
- 'AM_PATH_PYTHON' => 1,
- 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
- 'AM_SANITY_CHECK' => 1,
- '_AM_IF_OPTION' => 1,
- 'LT_PROG_GCJ' => 1,
- 'AC_WITH_LTDL' => 1,
- 'AC_PROG_NM' => 1,
- 'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
- 'AM_SET_LEADING_DOT' => 1,
- 'LT_SYS_MODULE_PATH' => 1,
'LT_CONFIG_LTDL_DIR' => 1,
- '_LT_PROG_LTMAIN' => 1,
- 'AM_PROG_CC_C_O' => 1,
- '_AM_MANGLE_OPTION' => 1,
- 'm4_pattern_forbid' => 1,
+ 'LT_LANG' => 1,
+ 'AC_LIBTOOL_DLOPEN_SELF' => 1,
+ '_LT_CC_BASENAME' => 1,
+ 'LT_SYS_DLOPEN_SELF' => 1,
+ 'AC_LIBTOOL_RC' => 1,
+ 'AM_SET_DEPDIR' => 1,
'_LT_AC_LANG_CXX_CONFIG' => 1,
'AC_LIBTOOL_FC' => 1,
- 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
- 'AM_DISABLE_STATIC' => 1,
- 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
- '_LT_DLL_DEF_P' => 1,
- 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
- 'AM_SET_DEPDIR' => 1,
- 'AC_LTDL_SYMBOL_USCORE' => 1,
- 'LT_FUNC_DLSYM_USCORE' => 1,
- 'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
- '_AM_PROG_TAR' => 1,
- '_LT_AC_FILE_LTDLL_C' => 1,
+ '_AM_SET_OPTIONS' => 1,
'm4_include' => 1,
- 'LT_LIB_DLLOAD' => 1,
- 'AC_LIB_LTDL' => 1,
- 'AM_PROG_LIBTOOL' => 1,
+ 'AC_LTDL_ENABLE_INSTALL' => 1,
+ 'AC_LIBTOOL_COMPILER_OPTION' => 1,
+ 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
'AC_LIBTOOL_OBJDIR' => 1,
- 'AC_DISABLE_SHARED' => 1,
- 'AM_PYTHON_CHECK_VERSION' => 1,
- 'LT_SYS_SYMBOL_USCORE' => 1,
- 'LT_PROG_GO' => 1,
- 'AC_PROG_EGREP' => 1,
- '_LT_AC_LANG_C_CONFIG' => 1,
- 'AC_LIBTOOL_PROG_CC_C_O' => 1,
- 'AX_PYTHON_DEVEL' => 1,
- 'AC_LIBLTDL_INSTALLABLE' => 1,
- 'LT_PATH_NM' => 1,
- 'AM_AUTOMAKE_VERSION' => 1,
- '_AM_DEPENDENCIES' => 1,
- 'LT_INIT' => 1,
- 'AC_LIBTOOL_F77' => 1,
- 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
- 'AM_MISSING_HAS_RUN' => 1,
- '_LT_PATH_TOOL_PREFIX' => 1,
- '_LT_AC_LANG_RC_CONFIG' => 1,
- 'AC_LTDL_DLSYM_USCORE' => 1,
+ '_LT_COMPILER_BOILERPLATE' => 1,
+ 'AC_LTDL_SYMBOL_USCORE' => 1,
+ '_LT_AC_PROG_CXXCPP' => 1,
+ '_AM_CONFIG_MACRO_DIRS' => 1,
'AC_PATH_TOOL_PREFIX' => 1,
- '_AM_SUBST_NOTMAKE' => 1,
- 'AC_LIBTOOL_DLOPEN_SELF' => 1,
- 'LT_AC_PROG_SED' => 1,
- '_LT_WITH_SYSROOT' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ 'AC_LTDL_OBJDIR' => 1,
+ '_AM_SET_OPTION' => 1,
+ '_LT_AC_LANG_F77_CONFIG' => 1,
+ 'LT_CMD_MAX_LEN' => 1,
+ '_LT_PROG_FC' => 1,
+ 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
'AM_PROG_NM' => 1,
- '_LT_AC_SHELL_INIT' => 1,
- 'AU_DEFUN' => 1,
- 'AM_PROG_LD' => 1,
- 'LT_SYS_DLSEARCH_PATH' => 1,
- 'm4_pattern_allow' => 1,
- '_LT_COMPILER_OPTION' => 1,
- 'AC_LIBTOOL_CONFIG' => 1,
- 'AC_LIBLTDL_CONVENIENCE' => 1,
- 'LTVERSION_VERSION' => 1,
- 'AM_RUN_LOG' => 1,
- 'AC_LIBTOOL_LINKER_OPTION' => 1,
- 'LT_SYS_MODULE_EXT' => 1,
- '_LT_PROG_ECHO_BACKSLASH' => 1,
- 'AC_LIBTOOL_DLOPEN' => 1,
- 'LTDL_INIT' => 1,
- '_LT_AC_CHECK_DLFCN' => 1,
- 'AC_LIBTOOL_PICMODE' => 1,
- 'AC_LIBTOOL_RC' => 1,
- 'AM_DISABLE_SHARED' => 1,
- '_LT_AC_SYS_COMPILER' => 1,
- 'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
- 'AC_LIBTOOL_COMPILER_OPTION' => 1,
- 'include' => 1,
- '_LT_AC_LANG_CXX' => 1,
- '_LT_AC_LANG_F77' => 1,
- 'AM_MISSING_PROG' => 1,
- 'LT_SUPPORTED_TAG' => 1,
- 'AC_PROG_LD' => 1,
- '_AM_CONFIG_MACRO_DIRS' => 1,
'LT_SYS_DLOPEN_DEPLIBS' => 1,
- '_LT_AC_LANG_GCJ' => 1,
- 'LTDL_CONVENIENCE' => 1,
- '_LT_LINKER_BOILERPLATE' => 1,
+ 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
+ 'LT_PROG_GO' => 1,
+ 'AM_DISABLE_SHARED' => 1,
'AC_LIBTOOL_SETUP' => 1,
- 'AC_ENABLE_STATIC' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
+ '_AM_DEPENDENCIES' => 1,
'AC_LTDL_SHLIBEXT' => 1,
- 'AC_PROG_LD_GNU' => 1,
- '_LT_PROG_F77' => 1,
- '_LT_AC_PROG_CXXCPP' => 1,
- '_AM_SET_OPTION' => 1,
- 'AM_PROG_INSTALL_SH' => 1,
- '_m4_warn' => 1,
- '_AM_SET_OPTIONS' => 1,
- 'AM_ENABLE_SHARED' => 1,
- 'LT_FUNC_ARGZ' => 1,
- '_LT_LIBOBJ' => 1,
- 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
- '_LT_AC_TAGCONFIG' => 1,
- 'AM_DEP_TRACK' => 1,
- 'LTSUGAR_VERSION' => 1,
- '_LT_PROG_CXX' => 1,
- 'AM_ENABLE_STATIC' => 1,
- 'AC_CHECK_LIBM' => 1,
- 'LT_PROG_RC' => 1,
- '_AC_AM_CONFIG_HEADER_HOOK' => 1,
+ '_LTDL_SETUP' => 1,
+ '_LT_LINKER_OPTION' => 1,
+ '_LT_AC_FILE_LTDLL_C' => 1,
+ '_LT_DLL_DEF_P' => 1,
'_LT_AC_TAGVAR' => 1,
- 'AC_PROG_LD_RELOAD_FLAG' => 1,
- 'AC_LTDL_SYSSEARCHPATH' => 1,
- '_LT_AC_LANG_GCJ_CONFIG' => 1,
- '_AC_PROG_LIBTOOL' => 1,
- 'AC_CONFIG_MACRO_DIR' => 1,
- 'LT_WITH_LTDL' => 1,
- 'LTOPTIONS_VERSION' => 1,
+ 'LTSUGAR_VERSION' => 1,
+ '_LT_AC_CHECK_DLFCN' => 1,
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
- 'LT_LANG' => 1,
- '_LT_COMPILER_BOILERPLATE' => 1,
- '_LT_AC_SYS_LIBPATH_AIX' => 1,
+ 'AC_DISABLE_STATIC' => 1,
+ 'AM_PROG_LD' => 1,
+ '_AC_AM_CONFIG_HEADER_HOOK' => 1,
+ '_LT_PROG_F77' => 1,
+ 'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
'AC_LTDL_PREOPEN' => 1,
- 'AX_PKG_SWIG' => 1,
- 'LT_CMD_MAX_LEN' => 1,
- 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
- '_AM_PROG_CC_C_O' => 1,
- 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
- 'LT_AC_PROG_GCJ' => 1,
- 'LT_LIB_M' => 1,
- 'AC_DISABLE_FAST_INSTALL' => 1,
- 'AM_MAKE_INCLUDE' => 1,
- 'LT_SYS_DLOPEN_SELF' => 1,
- 'AC_DEPLIBS_CHECK_METHOD' => 1,
- 'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
- 'AC_LTDL_OBJDIR' => 1,
- '_LT_PREPARE_SED_QUOTE_VARS' => 1,
- 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
+ 'AC_LIBTOOL_DLOPEN' => 1,
+ 'AC_PROG_LD_GNU' => 1,
+ 'AC_CONFIG_MACRO_DIR' => 1,
+ 'AC_LTDL_SHLIBPATH' => 1,
+ '_m4_warn' => 1,
+ 'AC_LTDL_DLLIB' => 1,
'AC_DEFUN' => 1,
- 'AC_LIBTOOL_WIN32_DLL' => 1,
- 'AM_CONDITIONAL' => 1,
+ '_LT_WITH_SYSROOT' => 1,
+ '_AM_SUBST_NOTMAKE' => 1,
'LT_AC_PROG_RC' => 1,
+ 'AM_PROG_CC_C_O' => 1,
+ 'AC_LIBTOOL_CXX' => 1,
+ '_LT_PROG_CXX' => 1,
+ 'LT_PROG_GCJ' => 1,
+ 'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
+ 'AM_SET_LEADING_DOT' => 1,
+ '_AM_MANGLE_OPTION' => 1,
+ 'LT_LIB_DLLOAD' => 1,
+ 'LT_PROG_RC' => 1,
+ 'AX_PYTHON_DEVEL' => 1,
+ 'AC_LIBLTDL_INSTALLABLE' => 1,
+ 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
+ 'AC_LIBTOOL_GCJ' => 1,
+ 'AM_PATH_PYTHON' => 1,
'LTOBSOLETE_VERSION' => 1,
- 'LTDL_INSTALLABLE' => 1,
- 'LT_OUTPUT' => 1,
- 'AC_DISABLE_STATIC' => 1,
- '_LT_AC_LANG_F77_CONFIG' => 1,
- 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
+ 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
'AC_PATH_MAGIC' => 1,
+ 'AC_PROG_LD' => 1,
+ 'AM_DISABLE_STATIC' => 1,
+ '_LT_AC_LANG_CXX' => 1,
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
- 'AM_SUBST_NOTMAKE' => 1,
+ 'LT_FUNC_ARGZ' => 1,
+ 'LT_AC_PROG_SED' => 1,
+ 'LT_SYS_MODULE_EXT' => 1,
+ 'AC_PROG_EGREP' => 1,
+ 'AM_PYTHON_CHECK_VERSION' => 1,
+ 'LTVERSION_VERSION' => 1,
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
- '_LTDL_SETUP' => 1,
- 'AC_LTDL_ENABLE_INSTALL' => 1,
- 'AC_PYTHON_DEVEL' => 1,
+ 'AM_DEP_TRACK' => 1,
+ 'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
+ '_LT_LINKER_BOILERPLATE' => 1,
+ 'AX_PKG_SWIG' => 1,
+ 'AC_PROG_NM' => 1,
+ '_LT_PROG_ECHO_BACKSLASH' => 1,
+ 'AM_SILENT_RULES' => 1,
+ 'AC_DISABLE_SHARED' => 1,
+ 'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
+ 'm4_pattern_allow' => 1,
+ 'AC_CHECK_LIBM' => 1,
+ 'AM_PROG_LIBTOOL' => 1,
+ '_LT_AC_SHELL_INIT' => 1,
+ 'include' => 1,
'_LT_AC_TRY_DLOPEN_SELF' => 1,
- 'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
- 'AC_PROG_LIBTOOL' => 1,
- '_AM_AUTOCONF_VERSION' => 1,
+ '_LT_AC_SYS_COMPILER' => 1,
+ 'AC_LIBTOOL_WIN32_DLL' => 1,
+ '_LT_AC_LANG_GCJ' => 1,
+ 'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
+ 'AC_DEFUN_ONCE' => 1,
+ 'AC_LIBTOOL_LINKER_OPTION' => 1,
+ 'AU_DEFUN' => 1,
+ 'AC_LIBTOOL_PICMODE' => 1,
+ '_LT_AC_SYS_LIBPATH_AIX' => 1,
+ 'LT_PATH_NM' => 1,
+ '_LT_LIBOBJ' => 1,
+ 'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
+ 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
'LT_AC_PROG_EGREP' => 1,
+ 'LTOPTIONS_VERSION' => 1,
+ 'AM_SANITY_CHECK' => 1,
+ 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
+ 'AC_WITH_LTDL' => 1,
+ 'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
+ 'AC_LIB_LTDL' => 1,
+ 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
+ '_AC_PROG_LIBTOOL' => 1,
+ 'AC_DEPLIBS_CHECK_METHOD' => 1,
+ 'LT_FUNC_DLSYM_USCORE' => 1,
+ 'LT_OUTPUT' => 1,
+ 'AC_PYTHON_DEVEL' => 1,
+ 'LTDL_INIT' => 1,
+ 'm4_pattern_forbid' => 1,
+ 'LT_AC_PROG_GCJ' => 1,
+ 'AM_MISSING_PROG' => 1,
+ 'LT_INIT' => 1,
+ 'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
+ 'LT_SUPPORTED_TAG' => 1,
'AC_ENABLE_SHARED' => 1,
- 'AM_AUX_DIR_EXPAND' => 1,
- 'AM_INIT_AUTOMAKE' => 1,
+ '_LT_AC_LANG_C_CONFIG' => 1,
+ 'AC_LTDL_SYSSEARCHPATH' => 1,
+ 'LT_WITH_LTDL' => 1,
+ 'AM_SUBST_NOTMAKE' => 1,
+ 'AM_RUN_LOG' => 1,
+ 'AC_LIBTOOL_F77' => 1,
+ 'LT_PATH_LD' => 1,
+ 'AC_LIBTOOL_LANG_C_CONFIG' => 1,
+ 'AC_ENABLE_STATIC' => 1,
+ 'AM_MAKE_INCLUDE' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
+ '_LT_AC_LANG_F77' => 1,
+ '_LT_PREPARE_SED_QUOTE_VARS' => 1,
+ 'LT_SYS_SYMBOL_USCORE' => 1,
'AC_ENABLE_FAST_INSTALL' => 1,
- 'LT_PATH_LD' => 1
+ '_LT_PROG_LTMAIN' => 1,
+ 'AM_AUX_DIR_EXPAND' => 1,
+ '_LT_COMPILER_OPTION' => 1,
+ '_LT_AC_PROG_ECHO_BACKSLASH' => 1
}
], 'Autom4te::Request' ),
bless( [
@@ -242,66 +242,66 @@
'configure.ac'
],
{
- 'AM_PROG_AR' => 1,
- 'LT_INIT' => 1,
- 'AC_CONFIG_FILES' => 1,
- 'AC_CONFIG_HEADERS' => 1,
- 'AM_AUTOMAKE_VERSION' => 1,
- 'AM_CONDITIONAL' => 1,
- 'AC_FC_SRCEXT' => 1,
- 'AM_POT_TOOLS' => 1,
- '_AM_COND_ENDIF' => 1,
- 'AM_PATH_GUILE' => 1,
- 'AM_ENABLE_MULTILIB' => 1,
'AC_SUBST' => 1,
- 'LT_SUPPORTED_TAG' => 1,
- 'AC_CANONICAL_SYSTEM' => 1,
- 'AC_LIBSOURCE' => 1,
+ 'AC_CONFIG_SUBDIRS' => 1,
+ '_AM_COND_IF' => 1,
'AC_INIT' => 1,
- 'AM_PROG_MKDIR_P' => 1,
- 'AM_PROG_LIBTOOL' => 1,
+ '_AM_MAKEFILE_INCLUDE' => 1,
+ 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
+ 'AM_PATH_GUILE' => 1,
+ 'AM_PROG_CC_C_O' => 1,
+ 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
+ '_AM_COND_ELSE' => 1,
+ 'AM_XGETTEXT_OPTION' => 1,
+ 'AC_CONFIG_FILES' => 1,
+ '_LT_AC_TAGCONFIG' => 1,
'include' => 1,
- 'AM_SILENT_RULES' => 1,
- 'AM_PROG_MOC' => 1,
- 'AM_MAINTAINER_MODE' => 1,
+ '_m4_warn' => 1,
'm4_include' => 1,
- 'AM_XGETTEXT_OPTION' => 1,
- 'AC_FC_PP_DEFINE' => 1,
- 'AC_CANONICAL_BUILD' => 1,
- 'AC_SUBST_TRACE' => 1,
- 'AM_EXTRA_RECURSIVE_TARGETS' => 1,
+ '_AM_SUBST_NOTMAKE' => 1,
+ 'AM_MAINTAINER_MODE' => 1,
+ 'm4_sinclude' => 1,
'AC_CONFIG_LIBOBJ_DIR' => 1,
'AM_MAKEFILE_INCLUDE' => 1,
- '_AM_COND_ELSE' => 1,
+ 'AM_PROG_LIBTOOL' => 1,
+ 'AM_PROG_CXX_C_O' => 1,
'm4_pattern_allow' => 1,
- 'AM_INIT_AUTOMAKE' => 1,
- 'AC_CONFIG_SUBDIRS' => 1,
- 'AC_CANONICAL_TARGET' => 1,
- 'AC_CONFIG_AUX_DIR' => 1,
- 'AM_GNU_GETTEXT' => 1,
- 'AC_CANONICAL_HOST' => 1,
- 'AC_REQUIRE_AUX_FILE' => 1,
- 'm4_sinclude' => 1,
- '_AM_COND_IF' => 1,
- 'AM_NLS' => 1,
- 'AC_PROG_LIBTOOL' => 1,
+ 'LT_CONFIG_LTDL_DIR' => 1,
+ 'AH_OUTPUT' => 1,
+ 'AM_SILENT_RULES' => 1,
+ 'AC_SUBST_TRACE' => 1,
+ 'AM_PROG_AR' => 1,
'AC_FC_FREEFORM' => 1,
- '_LT_AC_TAGCONFIG' => 1,
+ 'LT_SUPPORTED_TAG' => 1,
+ 'AC_CONFIG_AUX_DIR' => 1,
+ 'AM_PROG_MOC' => 1,
+ 'LT_INIT' => 1,
+ 'AC_FC_SRCEXT' => 1,
+ '_AM_COND_ENDIF' => 1,
+ 'AM_CONDITIONAL' => 1,
'AM_PROG_F77_C_O' => 1,
- '_AM_SUBST_NOTMAKE' => 1,
- 'AH_OUTPUT' => 1,
- 'AM_PROG_FC_C_O' => 1,
- 'sinclude' => 1,
+ 'AM_NLS' => 1,
'AC_CONFIG_LINKS' => 1,
- '_m4_warn' => 1,
- '_AM_MAKEFILE_INCLUDE' => 1,
'm4_pattern_forbid' => 1,
+ 'AC_CANONICAL_TARGET' => 1,
+ 'AM_PROG_FC_C_O' => 1,
'AC_DEFINE_TRACE_LITERAL' => 1,
- 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
- 'AM_PROG_CC_C_O' => 1,
+ 'AC_CANONICAL_HOST' => 1,
+ 'AC_CANONICAL_SYSTEM' => 1,
+ 'AM_INIT_AUTOMAKE' => 1,
+ 'AC_CONFIG_HEADERS' => 1,
'AC_FC_PP_SRCEXT' => 1,
- 'LT_CONFIG_LTDL_DIR' => 1,
- 'AM_PROG_CXX_C_O' => 1
+ 'AM_GNU_GETTEXT' => 1,
+ 'AC_REQUIRE_AUX_FILE' => 1,
+ 'AM_ENABLE_MULTILIB' => 1,
+ 'AM_POT_TOOLS' => 1,
+ 'sinclude' => 1,
+ 'AM_AUTOMAKE_VERSION' => 1,
+ 'AC_LIBSOURCE' => 1,
+ 'AC_PROG_LIBTOOL' => 1,
+ 'AC_FC_PP_DEFINE' => 1,
+ 'AM_PROG_MKDIR_P' => 1,
+ 'AC_CANONICAL_BUILD' => 1
}
], 'Autom4te::Request' )
);
diff --git a/sphinxbase-5prealpha/autom4te.cache/traces.0 b/sphinxbase-5prealpha/autom4te.cache/traces.0
index 1839ba6..8549665 100644
--- a/sphinxbase-5prealpha/autom4te.cache/traces.0
+++ b/sphinxbase-5prealpha/autom4te.cache/traces.0
@@ -696,21 +696,21 @@ m4trace:/usr/share/aclocal/ltdl.m4:907: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4
m4trace:/usr/share/aclocal/ltdl.m4:907: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
-m4trace:/usr/share/aclocal-1.15/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
+m4trace:/usr/share/aclocal-1.16/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.16'
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
dnl require some minimum version. Point them to the right macro.
-m4_if([$1], [1.15], [],
+m4_if([$1], [1.16.1], [],
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
])
-m4trace:/usr/share/aclocal-1.15/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
+m4trace:/usr/share/aclocal-1.16/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.16.1])dnl
m4_ifndef([AC_AUTOCONF_VERSION],
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
-m4trace:/usr/share/aclocal-1.15/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
+m4trace:/usr/share/aclocal-1.16/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
# Expand $ac_aux_dir to an absolute path.
am_aux_dir=`cd "$ac_aux_dir" && pwd`
])
-m4trace:/usr/share/aclocal-1.15/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
+m4trace:/usr/share/aclocal-1.16/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
AC_SUBST([$1_TRUE])dnl
@@ -730,7 +730,7 @@ AC_CONFIG_COMMANDS_PRE(
AC_MSG_ERROR([[conditional "$1" was never defined.
Usually this means the macro was only invoked conditionally.]])
fi])])
-m4trace:/usr/share/aclocal-1.15/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
+m4trace:/usr/share/aclocal-1.16/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
AC_REQUIRE([AM_DEP_TRACK])dnl
@@ -860,10 +860,10 @@ AM_CONDITIONAL([am__fastdep$1], [
test "x$enable_dependency_tracking" != xno \
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3])
])
-m4trace:/usr/share/aclocal-1.15/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
+m4trace:/usr/share/aclocal-1.16/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
])
-m4trace:/usr/share/aclocal-1.15/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
+m4trace:/usr/share/aclocal-1.16/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
AS_HELP_STRING(
[--enable-dependency-tracking],
[do not reject slow dependency extractors])
@@ -881,60 +881,51 @@ _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
AC_SUBST([am__nodep])dnl
_AM_SUBST_NOTMAKE([am__nodep])dnl
])
-m4trace:/usr/share/aclocal-1.15/depout.m4:12: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
+m4trace:/usr/share/aclocal-1.16/depout.m4:11: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ AS_CASE([$CONFIG_FILES],
+ [*\'*], [eval set x "$CONFIG_FILES"],
+ [*], [set x $CONFIG_FILES])
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`AS_DIRNAME("$mf")`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`AS_DIRNAME(["$file"])`
- AS_MKDIR_P([$dirpart/$fdir])
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`AS_DIRNAME(["$am_mf"])`
+ am_filepart=`AS_BASENAME(["$am_mf"])`
+ AM_RUN_LOG([cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles]) || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).])
+ fi
+ AS_UNSET([am_dirpart])
+ AS_UNSET([am_filepart])
+ AS_UNSET([am_mf])
+ AS_UNSET([am_rc])
+ rm -f conftest-deps.mk
}
])
-m4trace:/usr/share/aclocal-1.15/depout.m4:71: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
+m4trace:/usr/share/aclocal-1.16/depout.m4:62: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
-])
-m4trace:/usr/share/aclocal-1.15/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
+ [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
+m4trace:/usr/share/aclocal-1.16/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
dnl Autoconf wants to disallow AM_ names. We explicitly allow
dnl the ones we care about.
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
@@ -994,8 +985,8 @@ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
# We need awk for the "check" target (and possibly the TAP driver). The
# system "awk" is bad on some platforms.
@@ -1062,7 +1053,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -1076,7 +1067,7 @@ dnl The trailing newline in this macro's definition is deliberate, for
dnl backward compatibility and to allow trailing 'dnl'-style comments
dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
])
-m4trace:/usr/share/aclocal-1.15/init.m4:186: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
+m4trace:/usr/share/aclocal-1.16/init.m4:186: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
_am_arg=$1
_am_stamp_count=1
for _am_header in $config_headers :; do
@@ -1088,7 +1079,7 @@ for _am_header in $config_headers :; do
esac
done
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
-m4trace:/usr/share/aclocal-1.15/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+m4trace:/usr/share/aclocal-1.16/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
if test x"${install_sh+set}" != xset; then
case $am_aux_dir in
*\ * | *\ *)
@@ -1098,7 +1089,7 @@ if test x"${install_sh+set}" != xset; then
esac
fi
AC_SUBST([install_sh])])
-m4trace:/usr/share/aclocal-1.15/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
+m4trace:/usr/share/aclocal-1.16/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
mkdir .tst 2>/dev/null
if test -d .tst; then
am__leading_dot=.
@@ -1107,47 +1098,39 @@ else
fi
rmdir .tst 2>/dev/null
AC_SUBST([am__leading_dot])])
-m4trace:/usr/share/aclocal-1.15/make.m4:12: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
-cat > confinc << 'END'
+m4trace:/usr/share/aclocal-1.16/make.m4:13: -1- AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-AC_MSG_CHECKING([for style of include used by $am_make])
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
- ;;
- esac
-fi
-AC_SUBST([am__include])
-AC_SUBST([am__quote])
-AC_MSG_RESULT([$_am_result])
-rm -f confinc confmf
-])
-m4trace:/usr/share/aclocal-1.15/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
+ AS_CASE([$?:`cat confinc.out 2>/dev/null`],
+ ['0:this is the am__doit target'],
+ [AS_CASE([$s],
+ [BSD], [am__include='.include' am__quote='"'],
+ [am__include='include' am__quote=''])])
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+AC_MSG_RESULT([${_am_result}])
+AC_SUBST([am__include])])
+m4trace:/usr/share/aclocal-1.16/make.m4:42: -1- m4_pattern_allow([^am__quote$])
+m4trace:/usr/share/aclocal-1.16/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
$1=${$1-"${am_missing_run}$2"}
AC_SUBST($1)])
-m4trace:/usr/share/aclocal-1.15/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+m4trace:/usr/share/aclocal-1.16/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
AC_REQUIRE_AUX_FILE([missing])dnl
if test x"${MISSING+set}" != xset; then
case $am_aux_dir in
@@ -1165,11 +1148,11 @@ else
AC_MSG_WARN(['missing' script is too old or missing])
fi
])
-m4trace:/usr/share/aclocal-1.15/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
-m4trace:/usr/share/aclocal-1.15/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
-m4trace:/usr/share/aclocal-1.15/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
-m4trace:/usr/share/aclocal-1.15/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
-m4trace:/usr/share/aclocal-1.15/prog-cc-c-o.m4:12: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
+m4trace:/usr/share/aclocal-1.16/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
+m4trace:/usr/share/aclocal-1.16/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
+m4trace:/usr/share/aclocal-1.16/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
+m4trace:/usr/share/aclocal-1.16/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
+m4trace:/usr/share/aclocal-1.16/prog-cc-c-o.m4:12: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
AC_REQUIRE_AUX_FILE([compile])dnl
AC_LANG_PUSH([C])dnl
AC_CACHE_CHECK(
@@ -1201,13 +1184,16 @@ if test "$am_cv_prog_cc_c_o" != yes; then
CC="$am_aux_dir/compile $CC"
fi
AC_LANG_POP([C])])
-m4trace:/usr/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
-m4trace:/usr/share/aclocal-1.15/python.m4:35: -1- AC_DEFUN([AM_PATH_PYTHON], [
+m4trace:/usr/share/aclocal-1.16/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
+m4trace:/usr/share/aclocal-1.16/python.m4:35: -1- AC_DEFUN([AM_PATH_PYTHON], [
dnl Find a Python interpreter. Python versions prior to 2.0 are not
dnl supported. (2.0 was released on October 16, 2000).
m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
-[python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 dnl
- python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0])
+[python python2 python3 dnl
+ python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 dnl
+ python3.2 python3.1 python3.0 dnl
+ python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 dnl
+ python2.0])
AC_ARG_VAR([PYTHON], [the Python interpreter])
@@ -1386,7 +1372,7 @@ sys.stdout.write(sitedir)"`
fi
])
-m4trace:/usr/share/aclocal-1.15/python.m4:229: -1- AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys
+m4trace:/usr/share/aclocal-1.16/python.m4:232: -1- AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
# because we need at least 4 digits for the hex conversion.
# map returns an iterator in Python 3.0 and a list in 2.x
@@ -1396,12 +1382,12 @@ minverhex = 0
for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]]
sys.exit(sys.hexversion < minverhex)"
AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])])
-m4trace:/usr/share/aclocal-1.15/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
+m4trace:/usr/share/aclocal-1.16/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
ac_status=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
(exit $ac_status); }])
-m4trace:/usr/share/aclocal-1.15/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
+m4trace:/usr/share/aclocal-1.16/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
# Reject unsafe characters in $srcdir or the absolute working directory
# name. Accept space and tab only in the latter.
am_lf='
@@ -1472,7 +1458,7 @@ AC_CONFIG_COMMANDS_PRE(
AC_MSG_RESULT([done])])
rm -f conftest.file
])
-m4trace:/usr/share/aclocal-1.15/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
+m4trace:/usr/share/aclocal-1.16/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
AS_HELP_STRING(
[--enable-silent-rules],
[less verbose build output (undo: "make V=1")])
@@ -1520,7 +1506,7 @@ AM_BACKSLASH='\'
AC_SUBST([AM_BACKSLASH])dnl
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
])
-m4trace:/usr/share/aclocal-1.15/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
+m4trace:/usr/share/aclocal-1.16/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
# Installed binaries are usually stripped using 'strip' when the user
# run "make install-strip". However 'strip' might not be the right
# tool to use in cross-compilation environments, therefore Automake
@@ -1531,9 +1517,9 @@ if test "$cross_compiling" != no; then
fi
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
AC_SUBST([INSTALL_STRIP_PROGRAM])])
-m4trace:/usr/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
-m4trace:/usr/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
-m4trace:/usr/share/aclocal-1.15/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
+m4trace:/usr/share/aclocal-1.16/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
+m4trace:/usr/share/aclocal-1.16/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
+m4trace:/usr/share/aclocal-1.16/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
# in the wild :-( We should find a proper way to deprecate it ...
AC_SUBST([AMTAR], ['$${TAR-tar}'])
@@ -2094,8 +2080,8 @@ $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
exec AS_MESSAGE_LOG_FD>>config.log
$lt_cl_success || AS_EXIT(1)
])
-m4trace:m4/libtool.m4:812: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
-m4trace:m4/libtool.m4:823: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
+m4trace:m4/libtool.m4:811: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
+m4trace:m4/libtool.m4:822: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
m4_case([$1],
[C], [_LT_LANG(C)],
[C++], [_LT_LANG(CXX)],
@@ -2108,27 +2094,27 @@ m4_case([$1],
[_LT_LANG($1)],
[m4_fatal([$0: unsupported language: "$1"])])])dnl
])
-m4trace:m4/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
-m4trace:m4/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
+m4trace:m4/libtool.m4:914: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
+m4trace:m4/libtool.m4:914: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
You should run autoupdate.])dnl
LT_LANG(C++)])
-m4trace:m4/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
-m4trace:m4/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
+m4trace:m4/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
+m4trace:m4/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
You should run autoupdate.])dnl
LT_LANG(Fortran 77)])
-m4trace:m4/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
-m4trace:m4/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
+m4trace:m4/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
+m4trace:m4/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
You should run autoupdate.])dnl
LT_LANG(Fortran)])
-m4trace:m4/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
-m4trace:m4/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
+m4trace:m4/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
+m4trace:m4/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
You should run autoupdate.])dnl
LT_LANG(Java)])
-m4trace:m4/libtool.m4:919: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
-m4trace:m4/libtool.m4:919: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
+m4trace:m4/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
+m4trace:m4/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
You should run autoupdate.])dnl
LT_LANG(Windows Resource)])
-m4trace:m4/libtool.m4:1247: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
+m4trace:m4/libtool.m4:1246: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
AC_ARG_WITH([sysroot],
[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
[Search for dependent libraries within DIR (or the compiler's sysroot
@@ -2158,7 +2144,7 @@ esac
AC_MSG_RESULT([${lt_sysroot:-no}])
_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
[dependent libraries, and where our libraries should be installed.])])
-m4trace:m4/libtool.m4:1578: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4trace:m4/libtool.m4:1577: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
m4_require([_LT_DECL_SED])dnl
AC_CACHE_CHECK([$1], [$2],
[$2=no
@@ -2197,11 +2183,11 @@ else
m4_if([$6], , :, [$6])
fi
])
-m4trace:m4/libtool.m4:1620: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
-m4trace:m4/libtool.m4:1620: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
+m4trace:m4/libtool.m4:1619: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
+m4trace:m4/libtool.m4:1619: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
-m4trace:m4/libtool.m4:1629: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
+m4trace:m4/libtool.m4:1628: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
m4_require([_LT_DECL_SED])dnl
AC_CACHE_CHECK([$1], [$2],
[$2=no
@@ -2233,11 +2219,11 @@ else
m4_if([$5], , :, [$5])
fi
])
-m4trace:m4/libtool.m4:1664: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
-m4trace:m4/libtool.m4:1664: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
+m4trace:m4/libtool.m4:1663: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
+m4trace:m4/libtool.m4:1663: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
-m4trace:m4/libtool.m4:1671: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
+m4trace:m4/libtool.m4:1670: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
# find the maximum length of command line arguments
AC_MSG_CHECKING([the maximum length of command line arguments])
AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
@@ -2373,11 +2359,11 @@ max_cmd_len=$lt_cv_sys_max_cmd_len
_LT_DECL([], [max_cmd_len], [0],
[What is the maximum length of a command?])
])
-m4trace:m4/libtool.m4:1810: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
-m4trace:m4/libtool.m4:1810: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
+m4trace:m4/libtool.m4:1809: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
+m4trace:m4/libtool.m4:1809: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
-m4trace:m4/libtool.m4:1921: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
+m4trace:m4/libtool.m4:1920: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
if test yes != "$enable_dlopen"; then
enable_dlopen=unknown
enable_dlopen_self=unknown
@@ -2499,11 +2485,11 @@ _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
[Whether dlopen of statically linked programs is supported])
])
-m4trace:m4/libtool.m4:2046: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
-m4trace:m4/libtool.m4:2046: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
+m4trace:m4/libtool.m4:2045: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
+m4trace:m4/libtool.m4:2045: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
-m4trace:m4/libtool.m4:3167: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
+m4trace:m4/libtool.m4:3166: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
AC_MSG_CHECKING([for $1])
AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
[case $MAGIC_CMD in
@@ -2562,11 +2548,11 @@ fi
_LT_DECL([], [MAGIC_CMD], [0],
[Used to examine libraries when file_magic_cmd begins with "file"])dnl
])
-m4trace:m4/libtool.m4:3229: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
-m4trace:m4/libtool.m4:3229: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
+m4trace:m4/libtool.m4:3228: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
+m4trace:m4/libtool.m4:3228: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
-m4trace:m4/libtool.m4:3252: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
+m4trace:m4/libtool.m4:3251: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
AC_REQUIRE([AC_CANONICAL_HOST])dnl
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
m4_require([_LT_DECL_SED])dnl
@@ -2652,15 +2638,15 @@ AC_SUBST([LD])
_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
])
-m4trace:m4/libtool.m4:3341: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
-m4trace:m4/libtool.m4:3341: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
+m4trace:m4/libtool.m4:3340: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
+m4trace:m4/libtool.m4:3340: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
-m4trace:m4/libtool.m4:3342: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
-m4trace:m4/libtool.m4:3342: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
+m4trace:m4/libtool.m4:3341: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
+m4trace:m4/libtool.m4:3341: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
-m4trace:m4/libtool.m4:3671: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
+m4trace:m4/libtool.m4:3670: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
[if test -n "$NM"; then
# Let the user override the test.
@@ -2752,15 +2738,15 @@ AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
fi
rm -f conftest*])
])
-m4trace:m4/libtool.m4:3766: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
-m4trace:m4/libtool.m4:3766: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
+m4trace:m4/libtool.m4:3765: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
+m4trace:m4/libtool.m4:3765: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
-m4trace:m4/libtool.m4:3767: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
-m4trace:m4/libtool.m4:3767: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
+m4trace:m4/libtool.m4:3766: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
+m4trace:m4/libtool.m4:3766: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
-m4trace:m4/libtool.m4:3838: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
+m4trace:m4/libtool.m4:3837: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
test DEF = "`$SED -n dnl
-e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
-e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
@@ -2768,7 +2754,7 @@ m4trace:m4/libtool.m4:3838: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
-e q dnl Only consider the first "real" line
$1`" dnl
])
-m4trace:m4/libtool.m4:3852: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
+m4trace:m4/libtool.m4:3851: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
LIBM=
case $host in
*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
@@ -2784,8 +2770,8 @@ case $host in
esac
AC_SUBST([LIBM])
])
-m4trace:m4/libtool.m4:3871: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
-m4trace:m4/libtool.m4:3871: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
+m4trace:m4/libtool.m4:3870: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
+m4trace:m4/libtool.m4:3870: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
You should run autoupdate.])dnl
m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
m4trace:m4/libtool.m4:8141: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
@@ -3009,7 +2995,7 @@ m4trace:configure.ac:4: -1- m4_pattern_allow([^target_alias$])
m4trace:configure.ac:6: -1- AM_INIT_AUTOMAKE([no-define foreign])
m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
m4trace:configure.ac:6: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
-m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.15])
+m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.16.1])
m4trace:configure.ac:6: -1- _AM_AUTOCONF_VERSION([2.69])
m4trace:configure.ac:6: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
m4trace:configure.ac:6: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
@@ -3119,8 +3105,8 @@ m4trace:configure.ac:12: -1- AM_SET_DEPDIR
m4trace:configure.ac:12: -1- m4_pattern_allow([^DEPDIR$])
m4trace:configure.ac:12: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
m4trace:configure.ac:12: -1- AM_MAKE_INCLUDE
+m4trace:configure.ac:12: -1- AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
m4trace:configure.ac:12: -1- m4_pattern_allow([^am__include$])
-m4trace:configure.ac:12: -1- m4_pattern_allow([^am__quote$])
m4trace:configure.ac:12: -1- AM_DEP_TRACK
m4trace:configure.ac:12: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
m4trace:configure.ac:12: -1- m4_pattern_allow([^AMDEP_TRUE$])
@@ -3325,4 +3311,7 @@ m4trace:configure.ac:239: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
m4trace:configure.ac:239: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
m4trace:configure.ac:239: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
m4trace:configure.ac:239: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
+m4trace:configure.ac:239: -1- AM_RUN_LOG([cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles])
m4trace:configure.ac:239: -1- _LT_PROG_LTMAIN
diff --git a/sphinxbase-5prealpha/autom4te.cache/traces.1 b/sphinxbase-5prealpha/autom4te.cache/traces.1
index 0dc66b7..e088019 100644
--- a/sphinxbase-5prealpha/autom4te.cache/traces.1
+++ b/sphinxbase-5prealpha/autom4te.cache/traces.1
@@ -1,10 +1,13 @@
-m4trace:aclocal.m4:1388: -1- m4_include([m4/ax_pkg_swig.m4])
-m4trace:aclocal.m4:1389: -1- m4_include([m4/ax_python_devel.m4])
-m4trace:aclocal.m4:1390: -1- m4_include([m4/libtool.m4])
-m4trace:aclocal.m4:1391: -1- m4_include([m4/ltoptions.m4])
-m4trace:aclocal.m4:1392: -1- m4_include([m4/ltsugar.m4])
-m4trace:aclocal.m4:1393: -1- m4_include([m4/ltversion.m4])
-m4trace:aclocal.m4:1394: -1- m4_include([m4/lt~obsolete.m4])
+m4trace:aclocal.m4:679: -1- AC_SUBST([am__quote])
+m4trace:aclocal.m4:679: -1- AC_SUBST_TRACE([am__quote])
+m4trace:aclocal.m4:679: -1- m4_pattern_allow([^am__quote$])
+m4trace:aclocal.m4:1374: -1- m4_include([m4/ax_pkg_swig.m4])
+m4trace:aclocal.m4:1375: -1- m4_include([m4/ax_python_devel.m4])
+m4trace:aclocal.m4:1376: -1- m4_include([m4/libtool.m4])
+m4trace:aclocal.m4:1377: -1- m4_include([m4/ltoptions.m4])
+m4trace:aclocal.m4:1378: -1- m4_include([m4/ltsugar.m4])
+m4trace:aclocal.m4:1379: -1- m4_include([m4/ltversion.m4])
+m4trace:aclocal.m4:1380: -1- m4_include([m4/lt~obsolete.m4])
m4trace:configure.ac:4: -1- AC_INIT([sphinxbase], [5prealpha])
m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?A[CHUM]_])
m4trace:configure.ac:4: -1- m4_pattern_forbid([_AC_])
@@ -159,7 +162,7 @@ m4trace:configure.ac:4: -1- m4_pattern_allow([^target_alias$])
m4trace:configure.ac:5: -1- AC_CONFIG_HEADERS([include/config.h include/sphinx_config.h])
m4trace:configure.ac:6: -1- AM_INIT_AUTOMAKE([no-define foreign])
m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
-m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.15])
+m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.16.1])
m4trace:configure.ac:6: -1- AC_REQUIRE_AUX_FILE([install-sh])
m4trace:configure.ac:6: -1- AC_SUBST([INSTALL_PROGRAM])
m4trace:configure.ac:6: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
@@ -323,9 +326,6 @@ m4trace:configure.ac:12: -1- m4_pattern_allow([^DEPDIR$])
m4trace:configure.ac:12: -1- AC_SUBST([am__include])
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([am__include])
m4trace:configure.ac:12: -1- m4_pattern_allow([^am__include$])
-m4trace:configure.ac:12: -1- AC_SUBST([am__quote])
-m4trace:configure.ac:12: -1- AC_SUBST_TRACE([am__quote])
-m4trace:configure.ac:12: -1- m4_pattern_allow([^am__quote$])
m4trace:configure.ac:12: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
m4trace:configure.ac:12: -1- AC_SUBST([AMDEP_TRUE])
m4trace:configure.ac:12: -1- AC_SUBST_TRACE([AMDEP_TRUE])
diff --git a/sphinxbase-5prealpha/compile b/sphinxbase-5prealpha/compile
index a85b723..99e5052 100755
--- a/sphinxbase-5prealpha/compile
+++ b/sphinxbase-5prealpha/compile
@@ -1,9 +1,9 @@
#! /bin/sh
# Wrapper for compilers which do not understand '-c -o'.
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2018-03-07.03; # UTC
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
# Written by Tom Tromey .
#
# This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@ scriptversion=2012-10-14.11; # UTC
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
+# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
@@ -255,7 +255,8 @@ EOF
echo "compile $scriptversion"
exit $?
;;
- cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+ cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
func_cl_wrapper "$@" # Doesn't return...
;;
esac
@@ -339,9 +340,9 @@ exit $ret
# Local Variables:
# mode: shell-script
# sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
diff --git a/sphinxbase-5prealpha/config.log b/sphinxbase-5prealpha/config.log
index 845e821..8ed128d 100644
--- a/sphinxbase-5prealpha/config.log
+++ b/sphinxbase-5prealpha/config.log
@@ -12,9 +12,9 @@ generated by GNU Autoconf 2.69. Invocation command line was
hostname = pi
uname -m = armv7l
-uname -r = 4.4.38-v7+
+uname -r = 4.19.66-v7+
uname -s = Linux
-uname -v = #938 SMP Thu Dec 15 15:22:21 GMT 2016
+uname -v = #1253 SMP Thu Aug 15 11:49:46 BST 2019
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
@@ -27,259 +27,262 @@ uname -v = #938 SMP Thu Dec 15 15:22:21 GMT 2016
/usr/bin/oslevel = unknown
/bin/universe = unknown
-PATH: /home/pi/bin
-PATH: /home/pi/.local/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
-PATH: /usr/games
PATH: /usr/local/games
-PATH: /snap/bin
+PATH: /usr/games
## ----------- ##
## Core tests. ##
## ----------- ##
-configure:2556: checking for a BSD-compatible install
-configure:2624: result: /usr/bin/install -c
-configure:2635: checking whether build environment is sane
-configure:2690: result: yes
-configure:2841: checking for a thread-safe mkdir -p
-configure:2880: result: /bin/mkdir -p
-configure:2887: checking for gawk
-configure:2903: found /usr/bin/gawk
-configure:2914: result: gawk
-configure:2925: checking whether make sets $(MAKE)
-configure:2947: result: yes
-configure:2976: checking whether make supports nested variables
-configure:2993: result: yes
-configure:3118: checking build system type
-configure:3132: result: armv7l-unknown-linux-gnueabihf
-configure:3152: checking host system type
-configure:3165: result: armv7l-unknown-linux-gnueabihf
-configure:3197: checking for style of include used by make
-configure:3225: result: GNU
-configure:3296: checking for gcc
-configure:3312: found /usr/bin/gcc
-configure:3323: result: gcc
-configure:3552: checking for C compiler version
-configure:3561: gcc --version >&5
-gcc (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10) 5.4.0 20160609
-Copyright (C) 2015 Free Software Foundation, Inc.
+configure:2552: checking for a BSD-compatible install
+configure:2620: result: /usr/bin/install -c
+configure:2631: checking whether build environment is sane
+configure:2686: result: yes
+configure:2835: checking for a thread-safe mkdir -p
+configure:2874: result: /bin/mkdir -p
+configure:2881: checking for gawk
+configure:2911: result: no
+configure:2881: checking for mawk
+configure:2897: found /usr/bin/mawk
+configure:2908: result: mawk
+configure:2919: checking whether make sets $(MAKE)
+configure:2941: result: yes
+configure:2970: checking whether make supports nested variables
+configure:2987: result: yes
+configure:3112: checking build system type
+configure:3126: result: armv7l-unknown-linux-gnueabihf
+configure:3146: checking host system type
+configure:3159: result: armv7l-unknown-linux-gnueabihf
+configure:3183: checking whether make supports the include directive
+configure:3198: make -f confmf.GNU && cat confinc.out
+this is the am__doit target
+configure:3201: $? = 0
+configure:3220: result: yes (GNU style)
+configure:3290: checking for gcc
+configure:3306: found /usr/bin/gcc
+configure:3317: result: gcc
+configure:3546: checking for C compiler version
+configure:3555: gcc --version >&5
+gcc (Raspbian 8.3.0-6+rpi1) 8.3.0
+Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-configure:3572: $? = 0
-configure:3561: gcc -v >&5
+configure:3566: $? = 0
+configure:3555: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/5/lto-wrapper
+COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/8/lto-wrapper
Target: arm-linux-gnueabihf
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm --disable-libquadmath --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-armhf/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-armhf --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-armhf --with-arch-directory=arm --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --enable-multilib --disable-sjlj-exceptions --with-arch=armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb --disable-werror --enable-multilib --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
+Configured with: ../src/configure -v --with-pkgversion='Raspbian 8.3.0-6+rpi1' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=arm-linux-gnueabihf- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm --disable-libquadmath --disable-libquadmath-support --enable-plugin --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-sjlj-exceptions --with-arch=armv6 --with-fpu=vfp --with-float=hard --disable-werror --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
Thread model: posix
-gcc version 5.4.0 20160609 (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10)
-configure:3572: $? = 0
-configure:3561: gcc -V >&5
+gcc version 8.3.0 (Raspbian 8.3.0-6+rpi1)
+configure:3566: $? = 0
+configure:3555: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
-configure:3572: $? = 1
-configure:3561: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'
+configure:3566: $? = 1
+configure:3555: gcc -qversion >&5
+gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
-configure:3572: $? = 1
-configure:3592: checking whether the C compiler works
-configure:3614: gcc -g -O2 -Wall conftest.c >&5
-configure:3618: $? = 0
-configure:3666: result: yes
-configure:3669: checking for C compiler default output file name
-configure:3671: result: a.out
-configure:3677: checking for suffix of executables
-configure:3684: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:3688: $? = 0
-configure:3710: result:
-configure:3732: checking whether we are cross compiling
-configure:3740: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:3744: $? = 0
-configure:3751: ./conftest
-configure:3755: $? = 0
-configure:3770: result: no
-configure:3775: checking for suffix of object files
-configure:3797: gcc -c -g -O2 -Wall conftest.c >&5
-configure:3801: $? = 0
-configure:3822: result: o
-configure:3826: checking whether we are using the GNU C compiler
-configure:3845: gcc -c -g -O2 -Wall conftest.c >&5
-configure:3845: $? = 0
-configure:3854: result: yes
-configure:3863: checking whether gcc accepts -g
-configure:3883: gcc -c -g conftest.c >&5
-configure:3883: $? = 0
-configure:3924: result: yes
-configure:3941: checking for gcc option to accept ISO C89
-configure:4004: gcc -c -g -O2 -Wall conftest.c >&5
-configure:4004: $? = 0
-configure:4017: result: none needed
-configure:4042: checking whether gcc understands -c and -o together
-configure:4064: gcc -c conftest.c -o conftest2.o
-configure:4067: $? = 0
-configure:4064: gcc -c conftest.c -o conftest2.o
-configure:4067: $? = 0
-configure:4079: result: yes
-configure:4098: checking dependency style of gcc
-configure:4209: result: gcc3
-configure:4225: checking for library containing strerror
-configure:4256: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:4256: $? = 0
-configure:4273: result: none required
-configure:4329: checking for gcc
-configure:4356: result: gcc
-configure:4585: checking for C compiler version
-configure:4594: gcc --version >&5
-gcc (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10) 5.4.0 20160609
-Copyright (C) 2015 Free Software Foundation, Inc.
+configure:3566: $? = 1
+configure:3586: checking whether the C compiler works
+configure:3608: gcc -g -O2 -Wall conftest.c >&5
+configure:3612: $? = 0
+configure:3660: result: yes
+configure:3663: checking for C compiler default output file name
+configure:3665: result: a.out
+configure:3671: checking for suffix of executables
+configure:3678: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:3682: $? = 0
+configure:3704: result:
+configure:3726: checking whether we are cross compiling
+configure:3734: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:3738: $? = 0
+configure:3745: ./conftest
+configure:3749: $? = 0
+configure:3737: result: no
+configure:3742: checking for suffix of object files
+configure:3764: gcc -c -g -O2 -Wall conftest.c >&5
+configure:3768: $? = 0
+configure:3789: result: o
+configure:3793: checking whether we are using the GNU C compiler
+configure:3812: gcc -c -g -O2 -Wall conftest.c >&5
+configure:3812: $? = 0
+configure:3821: result: yes
+configure:3830: checking whether gcc accepts -g
+configure:3850: gcc -c -g conftest.c >&5
+configure:3850: $? = 0
+configure:3891: result: yes
+configure:3908: checking for gcc option to accept ISO C89
+configure:3971: gcc -c -g -O2 -Wall conftest.c >&5
+configure:3971: $? = 0
+configure:3984: result: none needed
+configure:4009: checking whether gcc understands -c and -o together
+configure:4031: gcc -c conftest.c -o conftest2.o
+configure:4034: $? = 0
+configure:4031: gcc -c conftest.c -o conftest2.o
+configure:4034: $? = 0
+configure:4046: result: yes
+configure:4065: checking dependency style of gcc
+configure:4176: result: gcc3
+configure:4192: checking for library containing strerror
+configure:4223: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:4223: $? = 0
+configure:4240: result: none required
+configure:4296: checking for gcc
+configure:4323: result: gcc
+configure:4552: checking for C compiler version
+configure:4561: gcc --version >&5
+gcc (Raspbian 8.3.0-6+rpi1) 8.3.0
+Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-configure:4605: $? = 0
-configure:4594: gcc -v >&5
+configure:4572: $? = 0
+configure:4561: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/5/lto-wrapper
+COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/8/lto-wrapper
Target: arm-linux-gnueabihf
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm --disable-libquadmath --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-armhf/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-armhf --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-armhf --with-arch-directory=arm --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --enable-multilib --disable-sjlj-exceptions --with-arch=armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb --disable-werror --enable-multilib --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
+Configured with: ../src/configure -v --with-pkgversion='Raspbian 8.3.0-6+rpi1' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=arm-linux-gnueabihf- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm --disable-libquadmath --disable-libquadmath-support --enable-plugin --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-sjlj-exceptions --with-arch=armv6 --with-fpu=vfp --with-float=hard --disable-werror --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
Thread model: posix
-gcc version 5.4.0 20160609 (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.10)
-configure:4605: $? = 0
-configure:4594: gcc -V >&5
+gcc version 8.3.0 (Raspbian 8.3.0-6+rpi1)
+configure:4572: $? = 0
+configure:4561: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
-configure:4605: $? = 1
-configure:4594: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'
+configure:4572: $? = 1
+configure:4561: gcc -qversion >&5
+gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
-configure:4605: $? = 1
-configure:4609: checking whether we are using the GNU C compiler
-configure:4637: result: yes
-configure:4646: checking whether gcc accepts -g
-configure:4707: result: yes
-configure:4724: checking for gcc option to accept ISO C89
-configure:4800: result: none needed
-configure:4825: checking whether gcc understands -c and -o together
-configure:4862: result: yes
-configure:4881: checking dependency style of gcc
-configure:4992: result: gcc3
-configure:5011: checking for gcc option to accept ISO C99
-configure:5160: gcc -c -g -O2 -Wall conftest.c >&5
+configure:4572: $? = 1
+configure:4576: checking whether we are using the GNU C compiler
+configure:4604: result: yes
+configure:4613: checking whether gcc accepts -g
+configure:4674: result: yes
+configure:4691: checking for gcc option to accept ISO C89
+configure:4767: result: none needed
+configure:4792: checking whether gcc understands -c and -o together
+configure:4829: result: yes
+configure:4848: checking dependency style of gcc
+configure:4959: result: gcc3
+configure:4978: checking for gcc option to accept ISO C99
+configure:5127: gcc -c -g -O2 -Wall conftest.c >&5
conftest.c: In function 'test_varargs':
conftest.c:80:9: warning: variable 'fnumber' set but not used [-Wunused-but-set-variable]
float fnumber;
- ^
+ ^~~~~~~
conftest.c:79:7: warning: variable 'number' set but not used [-Wunused-but-set-variable]
int number;
- ^
+ ^~~~~~
conftest.c:78:15: warning: variable 'str' set but not used [-Wunused-but-set-variable]
const char *str;
- ^
-configure:5160: $? = 0
-configure:5173: result: none needed
-configure:5281: checking for gcc option to accept ISO Standard C
-configure:5292: result: none needed
-configure:5346: checking how to print strings
-configure:5373: result: printf
-configure:5394: checking for a sed that does not truncate output
-configure:5458: result: /bin/sed
-configure:5476: checking for grep that handles long lines and -e
-configure:5534: result: /bin/grep
-configure:5539: checking for egrep
-configure:5601: result: /bin/grep -E
-configure:5606: checking for fgrep
-configure:5668: result: /bin/grep -F
-configure:5703: checking for ld used by gcc
-configure:5770: result: /usr/bin/ld
-configure:5777: checking if the linker (/usr/bin/ld) is GNU ld
-configure:5792: result: yes
-configure:5804: checking for BSD- or MS-compatible name lister (nm)
-configure:5858: result: /usr/bin/nm -B
-configure:5988: checking the name lister (/usr/bin/nm -B) interface
-configure:5995: gcc -c -g -O2 -Wall conftest.c >&5
-configure:5998: /usr/bin/nm -B "conftest.o"
-configure:6001: output
+ ^~~
+configure:5127: $? = 0
+configure:5140: result: none needed
+configure:5248: checking for gcc option to accept ISO Standard C
+configure:5259: result: none needed
+configure:5313: checking how to print strings
+configure:5340: result: printf
+configure:5361: checking for a sed that does not truncate output
+configure:5425: result: /bin/sed
+configure:5443: checking for grep that handles long lines and -e
+configure:5501: result: /bin/grep
+configure:5506: checking for egrep
+configure:5568: result: /bin/grep -E
+configure:5573: checking for fgrep
+configure:5635: result: /bin/grep -F
+configure:5670: checking for ld used by gcc
+configure:5737: result: /usr/bin/ld
+configure:5744: checking if the linker (/usr/bin/ld) is GNU ld
+configure:5759: result: yes
+configure:5771: checking for BSD- or MS-compatible name lister (nm)
+configure:5825: result: /usr/bin/nm -B
+configure:5955: checking the name lister (/usr/bin/nm -B) interface
+configure:5962: gcc -c -g -O2 -Wall conftest.c >&5
+configure:5965: /usr/bin/nm -B "conftest.o"
+configure:5968: output
00000000 B some_variable
-configure:6008: result: BSD nm
-configure:6011: checking whether ln -s works
-configure:6015: result: yes
-configure:6023: checking the maximum length of command line arguments
-configure:6154: result: 1572864
-configure:6202: checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format
-configure:6242: result: func_convert_file_noop
-configure:6249: checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format
-configure:6269: result: func_convert_file_noop
-configure:6276: checking for /usr/bin/ld option to reload object files
-configure:6283: result: -r
-configure:6357: checking for objdump
-configure:6373: found /usr/bin/objdump
-configure:6384: result: objdump
-configure:6416: checking how to recognize dependent libraries
-configure:6616: result: pass_all
-configure:6701: checking for dlltool
-configure:6731: result: no
-configure:6761: checking how to associate runtime and link libraries
-configure:6788: result: printf %s\n
-configure:6848: checking for ar
-configure:6864: found /usr/bin/ar
-configure:6875: result: ar
-configure:6912: checking for archiver @FILE support
-configure:6929: gcc -c -g -O2 -Wall conftest.c >&5
-configure:6929: $? = 0
-configure:6932: ar cru libconftest.a @conftest.lst >&5
+configure:5969: result: BSD nm
+configure:5972: checking whether ln -s works
+configure:5976: result: yes
+configure:5984: checking the maximum length of command line arguments
+configure:6115: result: 1572864
+configure:6163: checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format
+configure:6203: result: func_convert_file_noop
+configure:6210: checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format
+configure:6230: result: func_convert_file_noop
+configure:6237: checking for /usr/bin/ld option to reload object files
+configure:6244: result: -r
+configure:6318: checking for objdump
+configure:6334: found /usr/bin/objdump
+configure:6345: result: objdump
+configure:6377: checking how to recognize dependent libraries
+configure:6577: result: pass_all
+configure:6662: checking for dlltool
+configure:6692: result: no
+configure:6722: checking how to associate runtime and link libraries
+configure:6749: result: printf %s\n
+configure:6809: checking for ar
+configure:6825: found /usr/bin/ar
+configure:6836: result: ar
+configure:6873: checking for archiver @FILE support
+configure:6890: gcc -c -g -O2 -Wall conftest.c >&5
+configure:6890: $? = 0
+configure:6893: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
-configure:6935: $? = 0
-configure:6940: ar cru libconftest.a @conftest.lst >&5
+configure:6896: $? = 0
+configure:6901: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
ar: conftest.o: No such file or directory
-configure:6943: $? = 1
-configure:6955: result: @
-configure:7013: checking for strip
-configure:7029: found /usr/bin/strip
-configure:7040: result: strip
-configure:7112: checking for ranlib
-configure:7128: found /usr/bin/ranlib
-configure:7139: result: ranlib
-configure:7241: checking command to parse /usr/bin/nm -B output from gcc object
-configure:7394: gcc -c -g -O2 -Wall conftest.c >&5
-configure:7397: $? = 0
-configure:7401: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
-configure:7404: $? = 0
-configure:7470: gcc -o conftest -g -O2 -Wall conftest.c conftstm.o >&5
-configure:7473: $? = 0
-configure:7511: result: ok
-configure:7558: checking for sysroot
-configure:7588: result: no
-configure:7595: checking for a working dd
-configure:7633: result: /bin/dd
-configure:7637: checking how to truncate binary pipes
-configure:7652: result: /bin/dd bs=4096 count=1
-configure:7981: checking for mt
-configure:7997: found /bin/mt
-configure:8008: result: mt
-configure:8031: checking if mt is a manifest tool
-configure:8037: mt '-?'
-configure:8045: result: no
-configure:8722: checking how to run the C preprocessor
-configure:8753: gcc -E conftest.c
-configure:8753: $? = 0
-configure:8767: gcc -E conftest.c
-conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
+configure:6904: $? = 1
+configure:6903: result: @
+configure:6961: checking for strip
+configure:6977: found /usr/bin/strip
+configure:6988: result: strip
+configure:7060: checking for ranlib
+configure:7076: found /usr/bin/ranlib
+configure:7087: result: ranlib
+configure:7189: checking command to parse /usr/bin/nm -B output from gcc object
+configure:7342: gcc -c -g -O2 -Wall conftest.c >&5
+configure:7345: $? = 0
+configure:7349: /usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' > conftest.nm
+configure:7415: gcc -o conftest -g -O2 -Wall conftest.c conftstm.o >&5
+configure:7418: $? = 0
+configure:7456: result: ok
+configure:7503: checking for sysroot
+configure:7533: result: no
+configure:7540: checking for a working dd
+configure:7578: result: /bin/dd
+configure:7582: checking how to truncate binary pipes
+configure:7597: result: /bin/dd bs=4096 count=1
+configure:7926: checking for mt
+configure:7942: found /bin/mt
+configure:7953: result: mt
+configure:7976: checking if mt is a manifest tool
+configure:7982: mt '-?'
+configure:7990: result: no
+configure:8667: checking how to run the C preprocessor
+configure:8698: gcc -E conftest.c
+configure:8698: $? = 0
+configure:8712: gcc -E conftest.c
+conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
+ #include
+ ^~~~~~~~~~~~~~~~~~
compilation terminated.
-configure:8767: $? = 1
+configure:8712: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -290,13 +293,15 @@ configure: failed program was:
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include
-configure:8792: result: gcc -E
-configure:8812: gcc -E conftest.c
-configure:8812: $? = 0
-configure:8826: gcc -E conftest.c
-conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
+configure:8737: result: gcc -E
+configure:8757: gcc -E conftest.c
+configure:8757: $? = 0
+configure:8771: gcc -E conftest.c
+conftest.c:9:10: fatal error: ac_nonexistent.h: No such file or directory
+ #include
+ ^~~~~~~~~~~~~~~~~~
compilation terminated.
-configure:8826: $? = 1
+configure:8771: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -307,112 +312,112 @@ configure: failed program was:
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include
-configure:8855: checking for ANSI C header files
-configure:8875: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8875: $? = 0
-configure:8948: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:8948: $? = 0
-configure:8948: ./conftest
-configure:8948: $? = 0
-configure:8959: result: yes
-configure:8972: checking for sys/types.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8972: checking for sys/stat.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8972: checking for stdlib.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8972: checking for string.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8972: checking for memory.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8972: checking for strings.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8972: checking for inttypes.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8972: checking for stdint.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8972: checking for unistd.h
-configure:8972: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8972: $? = 0
-configure:8972: result: yes
-configure:8986: checking for dlfcn.h
-configure:8986: gcc -c -g -O2 -Wall conftest.c >&5
-configure:8986: $? = 0
-configure:8986: result: yes
-configure:9242: checking for objdir
-configure:9257: result: .libs
-configure:9521: checking if gcc supports -fno-rtti -fno-exceptions
-configure:9539: gcc -c -g -O2 -Wall -fno-rtti -fno-exceptions conftest.c >&5
+configure:8800: checking for ANSI C header files
+configure:8820: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8820: $? = 0
+configure:8893: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:8893: $? = 0
+configure:8893: ./conftest
+configure:8893: $? = 0
+configure:8904: result: yes
+configure:8917: checking for sys/types.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8917: checking for sys/stat.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8917: checking for stdlib.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8917: checking for string.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8917: checking for memory.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8917: checking for strings.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8917: checking for inttypes.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8917: checking for stdint.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8917: checking for unistd.h
+configure:8917: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8917: $? = 0
+configure:8917: result: yes
+configure:8931: checking for dlfcn.h
+configure:8931: gcc -c -g -O2 -Wall conftest.c >&5
+configure:8931: $? = 0
+configure:8931: result: yes
+configure:9187: checking for objdir
+configure:9202: result: .libs
+configure:9466: checking if gcc supports -fno-rtti -fno-exceptions
+configure:9484: gcc -c -g -O2 -Wall -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
-configure:9543: $? = 0
-configure:9556: result: no
-configure:9914: checking for gcc option to produce PIC
-configure:9921: result: -fPIC -DPIC
-configure:9929: checking if gcc PIC flag -fPIC -DPIC works
-configure:9947: gcc -c -g -O2 -Wall -fPIC -DPIC -DPIC conftest.c >&5
-configure:9951: $? = 0
-configure:9964: result: yes
-configure:9993: checking if gcc static flag -static works
-configure:10021: result: yes
+configure:9488: $? = 0
+configure:9501: result: no
+configure:9859: checking for gcc option to produce PIC
+configure:9866: result: -fPIC -DPIC
+configure:9874: checking if gcc PIC flag -fPIC -DPIC works
+configure:9892: gcc -c -g -O2 -Wall -fPIC -DPIC -DPIC conftest.c >&5
+configure:9896: $? = 0
+configure:9909: result: yes
+configure:9938: checking if gcc static flag -static works
+configure:9966: result: yes
+configure:9981: checking if gcc supports -c -o file.o
+configure:10002: gcc -c -g -O2 -Wall -o out/conftest2.o conftest.c >&5
+configure:10006: $? = 0
+configure:10028: result: yes
configure:10036: checking if gcc supports -c -o file.o
-configure:10057: gcc -c -g -O2 -Wall -o out/conftest2.o conftest.c >&5
-configure:10061: $? = 0
configure:10083: result: yes
-configure:10091: checking if gcc supports -c -o file.o
-configure:10138: result: yes
-configure:10171: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
-configure:11434: result: yes
-configure:11471: checking whether -lc should be explicitly linked in
-configure:11479: gcc -c -g -O2 -Wall conftest.c >&5
-configure:11482: $? = 0
-configure:11497: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
-configure:11500: $? = 0
-configure:11514: result: no
-configure:11674: checking dynamic linker characteristics
-configure:12255: gcc -o conftest -g -O2 -Wall -Wl,-rpath -Wl,/foo conftest.c >&5
-configure:12255: $? = 0
-configure:12504: result: GNU/Linux ld.so
-configure:12626: checking how to hardcode library paths into programs
-configure:12651: result: immediate
-configure:13199: checking whether stripping libraries is possible
-configure:13204: result: yes
-configure:13239: checking if libtool supports shared libraries
-configure:13241: result: yes
-configure:13244: checking whether to build shared libraries
-configure:13269: result: yes
-configure:13272: checking whether to build static libraries
-configure:13276: result: yes
-configure:13318: checking for bison
-configure:13334: found /usr/bin/bison
-configure:13346: result: bison -y
-configure:13360: checking for ANSI C header files
-configure:13464: result: yes
-configure:13472: checking whether byte ordering is bigendian
-configure:13487: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10116: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
+configure:11379: result: yes
+configure:11416: checking whether -lc should be explicitly linked in
+configure:11424: gcc -c -g -O2 -Wall conftest.c >&5
+configure:11427: $? = 0
+configure:11442: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
+configure:11445: $? = 0
+configure:11459: result: no
+configure:11619: checking dynamic linker characteristics
+configure:12200: gcc -o conftest -g -O2 -Wall -Wl,-rpath -Wl,/foo conftest.c >&5
+configure:12200: $? = 0
+configure:12449: result: GNU/Linux ld.so
+configure:12571: checking how to hardcode library paths into programs
+configure:12596: result: immediate
+configure:13144: checking whether stripping libraries is possible
+configure:13149: result: yes
+configure:13184: checking if libtool supports shared libraries
+configure:13186: result: yes
+configure:13189: checking whether to build shared libraries
+configure:13214: result: yes
+configure:13217: checking whether to build static libraries
+configure:13221: result: yes
+configure:10039: checking for bison
+configure:10055: found /usr/bin/bison
+configure:10067: result: bison -y
+configure:10081: checking for ANSI C header files
+configure:10185: result: yes
+configure:10193: checking whether byte ordering is bigendian
+configure:10208: gcc -c -g -O2 -Wall conftest.c >&5
conftest.c:23:9: error: unknown type name 'not'
not a universal capable compiler
- ^
+ ^~~
conftest.c:23:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
not a universal capable compiler
- ^
+ ^~~~~~~~~
conftest.c:23:15: error: unknown type name 'universal'
-configure:13487: $? = 1
+configure:10208: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -440,17 +445,18 @@ configure: failed program was:
| #endif
| typedef int dummy;
|
-configure:13532: gcc -c -g -O2 -Wall conftest.c >&5
-configure:13532: $? = 0
-configure:13550: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10253: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10253: $? = 0
+configure:10271: gcc -c -g -O2 -Wall conftest.c >&5
conftest.c: In function 'main':
-conftest.c:29:4: error: unknown type name 'not'
+conftest.c:29:4: error: unknown type name 'not'; did you mean 'ino_t'?
not big endian
- ^
+ ^~~
+ ino_t
conftest.c:29:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
not big endian
- ^
-configure:13550: $? = 1
+ ^~~~~~
+configure:10271: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -486,14 +492,14 @@ configure: failed program was:
| ;
| return 0;
| }
-configure:13678: result: no
-configure:13696: checking return type of signal handlers
-configure:13714: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10399: result: no
+configure:10417: checking return type of signal handlers
+configure:10435: gcc -c -g -O2 -Wall conftest.c >&5
conftest.c: In function 'main':
-conftest.c:28:9: error: void value not ignored as it ought to be
+conftest.c:28:10: error: void value not ignored as it ought to be
return *(signal (0, 0)) (0) == 1;
- ^
-configure:13714: $? = 1
+ ~^~~~~~~~~~~~~~~~~~
+configure:10435: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -526,16 +532,16 @@ configure: failed program was:
| ;
| return 0;
| }
-configure:13721: result: void
-configure:13729: checking for long long
-configure:13729: gcc -c -g -O2 -Wall conftest.c >&5
-configure:13729: $? = 0
-configure:13729: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10442: result: void
+configure:10450: checking for long long
+configure:10450: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10450: $? = 0
+configure:10450: gcc -c -g -O2 -Wall conftest.c >&5
conftest.c: In function 'main':
conftest.c:59:24: error: expected expression before ')' token
if (sizeof ((long long)))
^
-configure:13729: $? = 1
+configure:10450: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -600,78 +606,80 @@ configure: failed program was:
| ;
| return 0;
| }
-configure:13729: result: yes
-configure:13743: checking size of long long
-configure:13748: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:13748: $? = 0
-configure:13748: ./conftest
-configure:13748: $? = 0
-configure:13762: result: 8
-configure:13776: checking size of long
-configure:13781: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:13781: $? = 0
-configure:13781: ./conftest
-configure:13781: $? = 0
-configure:13795: result: 4
-configure:13808: checking for popen
-configure:13808: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:13808: $? = 0
-configure:13808: result: yes
-configure:13808: checking for perror
-configure:13808: gcc -o conftest -g -O2 -Wall conftest.c >&5
-configure:13808: $? = 0
-configure:13808: result: yes
-configure:13808: checking for snprintf
-configure:13808: gcc -o conftest -g -O2 -Wall conftest.c >&5
-conftest.c:51:6: warning: conflicting types for built-in function 'snprintf'
+configure:10450: result: yes
+configure:10464: checking size of long long
+configure:10469: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:10469: $? = 0
+configure:10469: ./conftest
+configure:10469: $? = 0
+configure:10483: result: 8
+configure:10497: checking size of long
+configure:10502: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:10502: $? = 0
+configure:10502: ./conftest
+configure:10502: $? = 0
+configure:10516: result: 4
+configure:10529: checking for popen
+configure:10529: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:10529: $? = 0
+configure:10529: result: yes
+configure:10529: checking for perror
+configure:10529: gcc -o conftest -g -O2 -Wall conftest.c >&5
+configure:10529: $? = 0
+configure:10529: result: yes
+configure:10529: checking for snprintf
+configure:10529: gcc -o conftest -g -O2 -Wall conftest.c >&5
+conftest.c:51:6: warning: conflicting types for built-in function 'snprintf' [-Wbuiltin-declaration-mismatch]
char snprintf ();
- ^
-configure:13808: $? = 0
-configure:13808: result: yes
-configure:13817: checking errno.h usability
-configure:13817: gcc -c -g -O2 -Wall conftest.c >&5
-configure:13817: $? = 0
-configure:13817: result: yes
-configure:13817: checking errno.h presence
-configure:13817: gcc -E conftest.c
-configure:13817: $? = 0
-configure:13817: result: yes
-configure:13817: checking for errno.h
-configure:13817: result: yes
-configure:13837: checking for sgesv_ in -llapack
-configure:13862: gcc -o conftest -g -O2 -Wall conftest.c -llapack >&5
-configure:13862: $? = 0
-configure:13871: result: yes
-configure:13885: checking for sgemm_ in -lblas
-configure:13910: gcc -o conftest -g -O2 -Wall conftest.c -lblas -llapack >&5
-configure:13910: $? = 0
-configure:13919: result: yes
-configure:13954: checking for log in -lm
-configure:13979: gcc -o conftest -g -O2 -Wall conftest.c -lm -lblas -llapack >&5
-conftest.c:39:6: warning: conflicting types for built-in function 'log'
+ ^~~~~~~~
+configure:10529: $? = 0
+configure:10529: result: yes
+configure:10538: checking errno.h usability
+configure:10538: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10538: $? = 0
+configure:10538: result: yes
+configure:10538: checking errno.h presence
+configure:10538: gcc -E conftest.c
+configure:10538: $? = 0
+configure:10538: result: yes
+configure:10538: checking for errno.h
+configure:10538: result: yes
+configure:10558: checking for sgesv_ in -llapack
+configure:10583: gcc -o conftest -g -O2 -Wall conftest.c -llapack >&5
+configure:10583: $? = 0
+configure:10592: result: yes
+configure:10606: checking for sgemm_ in -lblas
+configure:10631: gcc -o conftest -g -O2 -Wall conftest.c -lblas -llapack >&5
+configure:10631: $? = 0
+configure:10640: result: yes
+configure:10675: checking for log in -lm
+configure:10700: gcc -o conftest -g -O2 -Wall conftest.c -lm -lblas -llapack >&5
+conftest.c:39:6: warning: conflicting types for built-in function 'log' [-Wbuiltin-declaration-mismatch]
char log ();
- ^
-configure:13979: $? = 0
-configure:13988: result: yes
-configure:14019: checking pthread.h usability
-configure:14019: gcc -c -g -O2 -Wall conftest.c >&5
-configure:14019: $? = 0
-configure:14019: result: yes
-configure:14019: checking pthread.h presence
-configure:14019: gcc -E conftest.c
-configure:14019: $? = 0
-configure:14019: result: yes
-configure:14019: checking for pthread.h
-configure:14019: result: yes
-configure:14029: checking for pthread_create in -lpthread
-configure:14054: gcc -o conftest -g -O2 -Wall conftest.c -lpthread -lm -lblas -llapack >&5
-configure:14054: $? = 0
-configure:14063: result: yes
-configure:14136: checking pulse/pulseaudio.h usability
-configure:14136: gcc -c -g -O2 -Wall conftest.c >&5
-conftest.c:69:30: fatal error: pulse/pulseaudio.h: No such file or directory
+ ^~~
+configure:10700: $? = 0
+configure:10709: result: yes
+configure:10740: checking pthread.h usability
+configure:10740: gcc -c -g -O2 -Wall conftest.c >&5
+configure:10740: $? = 0
+configure:10740: result: yes
+configure:10740: checking pthread.h presence
+configure:10740: gcc -E conftest.c
+configure:10740: $? = 0
+configure:10740: result: yes
+configure:10740: checking for pthread.h
+configure:10740: result: yes
+configure:10750: checking for pthread_create in -lpthread
+configure:10775: gcc -o conftest -g -O2 -Wall conftest.c -lpthread -lm -lblas -llapack >&5
+configure:10775: $? = 0
+configure:10784: result: yes
+configure:10857: checking pulse/pulseaudio.h usability
+configure:10857: gcc -c -g -O2 -Wall conftest.c >&5
+conftest.c:69:10: fatal error: pulse/pulseaudio.h: No such file or directory
+ #include
+ ^~~~~~~~~~~~~~~~~~~~
compilation terminated.
-configure:14136: $? = 1
+configure:10857: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -742,12 +750,14 @@ configure: failed program was:
| # include
| #endif
| #include
-configure:14136: result: no
-configure:14136: checking pulse/pulseaudio.h presence
-configure:14136: gcc -E conftest.c
-conftest.c:36:30: fatal error: pulse/pulseaudio.h: No such file or directory
+configure:10857: result: no
+configure:10857: checking pulse/pulseaudio.h presence
+configure:10857: gcc -E conftest.c
+conftest.c:36:10: fatal error: pulse/pulseaudio.h: No such file or directory
+ #include
+ ^~~~~~~~~~~~~~~~~~~~
compilation terminated.
-configure:14136: $? = 1
+configure:10857: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -785,14 +795,16 @@ configure: failed program was:
| #define ENABLE_THREADS /**/
| /* end confdefs.h. */
| #include
-configure:14136: result: no
-configure:14136: checking for pulse/pulseaudio.h
-configure:14136: result: no
-configure:14233: checking alsa/asoundlib.h usability
-configure:14233: gcc -c -g -O2 -Wall conftest.c >&5
-conftest.c:69:28: fatal error: alsa/asoundlib.h: No such file or directory
+configure:10857: result: no
+configure:10857: checking for pulse/pulseaudio.h
+configure:10857: result: no
+configure:10954: checking alsa/asoundlib.h usability
+configure:10954: gcc -c -g -O2 -Wall conftest.c >&5
+conftest.c:69:10: fatal error: alsa/asoundlib.h: No such file or directory
+ #include
+ ^~~~~~~~~~~~~~~~~~
compilation terminated.
-configure:14233: $? = 1
+configure:10954: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -863,12 +875,14 @@ configure: failed program was:
| # include
| #endif
| #include
-configure:14233: result: no
-configure:14233: checking alsa/asoundlib.h presence
-configure:14233: gcc -E conftest.c
-conftest.c:36:28: fatal error: alsa/asoundlib.h: No such file or directory
+configure:10954: result: no
+configure:10954: checking alsa/asoundlib.h presence
+configure:10954: gcc -E conftest.c
+conftest.c:36:10: fatal error: alsa/asoundlib.h: No such file or directory
+ #include
+ ^~~~~~~~~~~~~~~~~~
compilation terminated.
-configure:14233: $? = 1
+configure:10954: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "sphinxbase"
@@ -906,56 +920,56 @@ configure: failed program was:
| #define ENABLE_THREADS /**/
| /* end confdefs.h. */
| #include
-configure:14233: result: no
-configure:14233: checking for alsa/asoundlib.h
-configure:14233: result: no
-configure:14335: checking for doxygen
-configure:14363: result: no
-configure:14424: checking for a Python interpreter with version >= 2.6
-configure:14441: python -c import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.6'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)
-configure:14444: $? = 0
-configure:14450: result: python
-configure:14458: checking for python
-configure:14476: found /usr/bin/python
-configure:14488: result: /usr/bin/python
-configure:14506: checking for python version
-configure:14513: result: 2.7
-configure:14525: checking for python platform
-configure:14532: result: linux2
-configure:14558: checking for python script directory
-configure:14593: result: ${prefix}/lib/python2.7/dist-packages
-configure:14602: checking for python extension module directory
-configure:14637: result: ${exec_prefix}/lib/python2.7/dist-packages
-configure:14658: checking for python2.7
-configure:14688: result: /usr/bin/python
-configure:14704: checking for a version of Python >= '2.1.0'
-configure:14730: result: yes
-configure:14761: checking for the distutils Python package
-configure:14765: result: yes
-configure:14779: checking for Python include path
-configure:14795: result: -I/usr/include/python2.7
-configure:14802: checking for Python library path
-configure:14879: result: -L/usr/lib -lpython2.7
-configure:14886: checking for Python site-packages path
-configure:14892: result: /usr/lib/python2.7/dist-packages
-configure:14899: checking python extra libraries
-configure:14906: result: -lpthread -ldl -lutil -lm
-configure:14913: checking python extra linking flags
-configure:14920: result: -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
-configure:14927: checking consistency of all components of python development environment
-configure:14953: gcc -o conftest -g -O2 -Wall -I/usr/include/python2.7 conftest.c -lpthread -lm -lblas -llapack -L/usr/lib -lpython2.7 -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions -lpthread -ldl -lutil -lm >&5
-configure:14953: $? = 0
-configure:14970: result: yes
-configure:15001: checking for swig
-configure:15019: found /usr/bin/swig
-configure:15031: result: /usr/bin/swig
-configure:15045: checking SWIG version
-configure:15048: result: 3.0.8
-configure:15097: checking for SWIG library
-configure:15100: result: /usr/share/swig3.0
-configure:15237: checking that generated files are newer than configure
-configure:15243: result: done
-configure:15295: creating ./config.status
+configure:10954: result: no
+configure:10954: checking for alsa/asoundlib.h
+configure:10954: result: no
+configure:11056: checking for doxygen
+configure:11084: result: no
+configure:11145: checking for a Python interpreter with version >= 2.6
+configure:11162: python -c import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.6'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)
+configure:11165: $? = 0
+configure:11171: result: python
+configure:11179: checking for python
+configure:11197: found /usr/bin/python
+configure:11209: result: /usr/bin/python
+configure:11227: checking for python version
+configure:11234: result: 2.7
+configure:11246: checking for python platform
+configure:11253: result: linux2
+configure:11279: checking for python script directory
+configure:11314: result: ${prefix}/lib/python2.7/dist-packages
+configure:11323: checking for python extension module directory
+configure:11358: result: ${exec_prefix}/lib/python2.7/dist-packages
+configure:11379: checking for python2.7
+configure:11409: result: /usr/bin/python
+configure:11425: checking for a version of Python >= '2.1.0'
+configure:11451: result: yes
+configure:11482: checking for the distutils Python package
+configure:11486: result: yes
+configure:11500: checking for Python include path
+configure:11516: result: -I/usr/include/python2.7
+configure:11523: checking for Python library path
+configure:11600: result: -L/usr/lib -lpython2.7
+configure:11607: checking for Python site-packages path
+configure:11613: result: /usr/lib/python2.7/dist-packages
+configure:11620: checking python extra libraries
+configure:11627: result: -lpthread -ldl -lutil -lm
+configure:11634: checking python extra linking flags
+configure:11641: result: -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions
+configure:11648: checking consistency of all components of python development environment
+configure:11674: gcc -o conftest -g -O2 -Wall -I/usr/include/python2.7 conftest.c -lpthread -lm -lblas -llapack -L/usr/lib -lpython2.7 -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions -lpthread -ldl -lutil -lm >&5
+configure:11674: $? = 0
+configure:11691: result: yes
+configure:11722: checking for swig
+configure:11740: found /usr/bin/swig
+configure:11752: result: /usr/bin/swig
+configure:11766: checking SWIG version
+configure:11769: result: 3.0.12
+configure:11818: checking for SWIG library
+configure:11821: result: /usr/share/swig3.0
+configure:11950: checking that generated files are newer than configure
+configure:11956: result: done
+configure:12008: creating ./config.status
## ---------------------- ##
## Running config.status. ##
@@ -972,50 +986,130 @@ generated by GNU Autoconf 2.69. Invocation command line was
on pi
-config.status:1171: creating sphinxbase.pc
-config.status:1171: creating Makefile
-config.status:1171: creating include/Makefile
-config.status:1171: creating include/sphinxbase/Makefile
-config.status:1171: creating src/Makefile
-config.status:1171: creating src/libsphinxad/Makefile
-config.status:1171: creating src/libsphinxbase/Makefile
-config.status:1171: creating src/libsphinxbase/util/Makefile
-config.status:1171: creating src/libsphinxbase/feat/Makefile
-config.status:1171: creating src/libsphinxbase/fe/Makefile
-config.status:1171: creating src/libsphinxbase/lm/Makefile
-config.status:1171: creating src/sphinx_fe/Makefile
-config.status:1171: creating src/sphinx_cepview/Makefile
-config.status:1171: creating src/sphinx_jsgf2fsg/Makefile
-config.status:1171: creating src/sphinx_adtools/Makefile
-config.status:1171: creating src/sphinx_lmtools/Makefile
-config.status:1171: creating doc/Makefile
-config.status:1171: creating doc/doxyfile
-config.status:1171: creating test/Makefile
-config.status:1171: creating test/unit/testfuncs.sh
-config.status:1171: creating test/unit/Makefile
-config.status:1171: creating test/unit/test_alloc/Makefile
-config.status:1171: creating test/unit/test_bitvec/Makefile
-config.status:1171: creating test/unit/test_case/Makefile
-config.status:1171: creating test/unit/test_string/Makefile
-config.status:1171: creating test/unit/test_cmdln/Makefile
-config.status:1171: creating test/unit/test_hash/Makefile
-config.status:1171: creating test/unit/test_matrix/Makefile
-config.status:1171: creating test/unit/test_feat/Makefile
-config.status:1171: creating test/unit/test_fe/Makefile
-config.status:1171: creating test/unit/test_logmath/Makefile
-config.status:1171: creating test/unit/test_lineiter/Makefile
-config.status:1171: creating test/unit/test_ngram/Makefile
-config.status:1171: creating test/unit/test_fsg/Makefile
-config.status:1171: creating test/unit/test_thread/Makefile
-config.status:1171: creating test/unit/test_util/Makefile
-config.status:1171: creating test/regression/testfuncs.sh
-config.status:1171: creating test/regression/Makefile
-config.status:1171: creating swig/Makefile
-config.status:1171: creating swig/python/Makefile
-config.status:1171: creating include/config.h
-config.status:1171: creating include/sphinx_config.h
-config.status:1400: executing depfiles commands
-config.status:1400: executing libtool commands
+config.status:1167: creating sphinxbase.pc
+config.status:1167: creating Makefile
+config.status:1167: creating include/Makefile
+config.status:1167: creating include/sphinxbase/Makefile
+config.status:1167: creating src/Makefile
+config.status:1167: creating src/libsphinxad/Makefile
+config.status:1167: creating src/libsphinxbase/Makefile
+config.status:1167: creating src/libsphinxbase/util/Makefile
+config.status:1167: creating src/libsphinxbase/feat/Makefile
+config.status:1167: creating src/libsphinxbase/fe/Makefile
+config.status:1167: creating src/libsphinxbase/lm/Makefile
+config.status:1167: creating src/sphinx_fe/Makefile
+config.status:1167: creating src/sphinx_cepview/Makefile
+config.status:1167: creating src/sphinx_jsgf2fsg/Makefile
+config.status:1167: creating src/sphinx_adtools/Makefile
+config.status:1167: creating src/sphinx_lmtools/Makefile
+config.status:1167: creating doc/Makefile
+config.status:1167: creating doc/doxyfile
+config.status:1167: creating test/Makefile
+config.status:1167: creating test/unit/testfuncs.sh
+config.status:1167: creating test/unit/Makefile
+config.status:1167: creating test/unit/test_alloc/Makefile
+config.status:1167: creating test/unit/test_bitvec/Makefile
+config.status:1167: creating test/unit/test_case/Makefile
+config.status:1167: creating test/unit/test_string/Makefile
+config.status:1167: creating test/unit/test_cmdln/Makefile
+config.status:1167: creating test/unit/test_hash/Makefile
+config.status:1167: creating test/unit/test_matrix/Makefile
+config.status:1167: creating test/unit/test_feat/Makefile
+config.status:1167: creating test/unit/test_fe/Makefile
+config.status:1167: creating test/unit/test_logmath/Makefile
+config.status:1167: creating test/unit/test_lineiter/Makefile
+config.status:1167: creating test/unit/test_ngram/Makefile
+config.status:1167: creating test/unit/test_fsg/Makefile
+config.status:1167: creating test/unit/test_thread/Makefile
+config.status:1167: creating test/unit/test_util/Makefile
+config.status:1167: creating test/regression/testfuncs.sh
+config.status:1167: creating test/regression/Makefile
+config.status:1167: creating swig/Makefile
+config.status:1167: creating swig/python/Makefile
+config.status:1167: creating include/config.h
+config.status:1348: include/config.h is unchanged
+config.status:1167: creating include/sphinx_config.h
+config.status:1348: include/sphinx_config.h is unchanged
+config.status:1396: executing depfiles commands
+config.status:1473: cd src/libsphinxad && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/libsphinxbase/util && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/libsphinxbase/feat && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/libsphinxbase/fe && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/libsphinxbase/lm && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/sphinx_fe && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/sphinx_cepview && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/sphinx_jsgf2fsg && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/sphinx_adtools && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd src/sphinx_lmtools && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_alloc && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_bitvec && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_case && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_string && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_cmdln && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_hash && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_matrix && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_feat && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_fe && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_logmath && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_lineiter && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_ngram && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_fsg && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_thread && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd test/unit/test_util && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1473: cd swig/python && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
+make: Nothing to be done for 'am--depfiles'.
+config.status:1478: $? = 0
+config.status:1396: executing libtool commands
## ---------------- ##
## Cache variables. ##
@@ -1083,7 +1177,7 @@ ac_cv_path_SWIG=/usr/bin/swig
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_lt_DD=/bin/dd
ac_cv_path_mkdir=/bin/mkdir
-ac_cv_prog_AWK=gawk
+ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_HAVE_DOXYGEN=no
ac_cv_prog_YACC='bison -y'
@@ -1129,7 +1223,7 @@ lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_gnu_ld=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
-lt_cv_shlibpath_overrides_runpath=no
+lt_cv_shlibpath_overrides_runpath=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\'''
@@ -1144,7 +1238,7 @@ lt_cv_truncate_bin='/bin/dd bs=4096 count=1'
## Output variables. ##
## ----------------- ##
-ACLOCAL='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15'
+ACLOCAL='${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
@@ -1154,10 +1248,10 @@ AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='1'
AM_V='$(V)'
AR='ar'
-AUTOCONF='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf'
-AUTOHEADER='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader'
-AUTOMAKE='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15'
-AWK='gawk'
+AUTOCONF='${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf'
+AUTOHEADER='${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader'
+AUTOMAKE='${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16'
+AWK='mawk'
BUILD_DOXYGEN_FALSE=''
BUILD_DOXYGEN_TRUE='#'
BUILD_SWIG_FALSE='#'
@@ -1198,7 +1292,7 @@ LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
LT_SYS_LIBRARY_PATH=''
-MAKEINFO='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo'
+MAKEINFO='${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/bin/mkdir -p'
NM='/usr/bin/nm -B'
@@ -1274,7 +1368,7 @@ host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
-install_sh='${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh'
+install_sh='${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
@@ -1353,5 +1447,5 @@ generated by GNU Autoconf 2.69. Invocation command line was
on pi
-config.status:1171: creating include/config.h
-config.status:1352: include/config.h is unchanged
+config.status:1167: creating include/config.h
+config.status:1348: include/config.h is unchanged
diff --git a/sphinxbase-5prealpha/config.status b/sphinxbase-5prealpha/config.status
index e9ffc18..32dbbc4 100755
--- a/sphinxbase-5prealpha/config.status
+++ b/sphinxbase-5prealpha/config.status
@@ -437,11 +437,11 @@ Copyright (C) 2012 Free Software Foundation, Inc.
This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it."
-ac_pwd='/home/pi/speech2text/sphinxbase-5prealpha'
+ac_pwd='/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha'
srcdir='.'
INSTALL='/usr/bin/install -c'
MKDIR_P='/bin/mkdir -p'
-AWK='gawk'
+AWK='mawk'
test -n "$AWK" || AWK=awk
# The default lists apply if the user does not specify any file.
ac_need_defaults=:
@@ -539,7 +539,7 @@ _ASBOX
#
# INIT-COMMANDS
#
-AMDEP_TRUE="" ac_aux_dir="."
+AMDEP_TRUE="" MAKE="make"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -554,7 +554,7 @@ macro_revision='2.4.6'
enable_shared='yes'
enable_static='yes'
pic_mode='default'
-enable_fast_install='yes'
+enable_fast_install='needless'
shared_archive_member_spec=''
SHELL='/bin/bash'
ECHO='printf %s\n'
@@ -668,7 +668,7 @@ need_version='no'
version_type='linux'
runpath_var='LD_RUN_PATH'
shlibpath_var='LD_LIBRARY_PATH'
-shlibpath_overrides_runpath='no'
+shlibpath_overrides_runpath='yes'
libname_spec='lib$name'
library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
soname_spec='$libname$release$shared_ext$major'
@@ -678,8 +678,8 @@ postuninstall_cmds=''
finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
finish_eval=''
hardcode_into_libs='yes'
-sys_lib_search_path_spec='/usr/lib/gcc/arm-linux-gnueabihf/5 /usr/lib/arm-linux-gnueabihf /usr/lib /lib/arm-linux-gnueabihf /lib '
-configure_time_dlsearch_path='/lib /usr/lib /opt/vc/lib /lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/mesa-egl /usr/lib/arm-linux-gnueabihf/mesa /usr/local/lib /usr/local/lib '
+sys_lib_search_path_spec='/usr/lib/gcc/arm-linux-gnueabihf/8 /usr/lib/arm-linux-gnueabihf /usr/lib /lib/arm-linux-gnueabihf /lib '
+configure_time_dlsearch_path='/lib /usr/lib /opt/vc/lib /usr/local/lib/arm-linux-gnueabihf /lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/libfakeroot /usr/local/lib '
configure_time_lt_sys_library_path=''
hardcode_action='immediate'
enable_dlopen='unknown'
@@ -922,7 +922,6 @@ S["am__nodep"]="_no"
S["AMDEPBACKSLASH"]="\\"
S["AMDEP_FALSE"]="#"
S["AMDEP_TRUE"]=""
-S["am__quote"]=""
S["am__include"]="include"
S["DEPDIR"]=".deps"
S["OBJEXT"]="o"
@@ -949,17 +948,17 @@ S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
S["AMTAR"]="$${TAR-tar}"
S["am__leading_dot"]="."
S["SET_MAKE"]=""
-S["AWK"]="gawk"
+S["AWK"]="mawk"
S["mkdir_p"]="$(MKDIR_P)"
S["MKDIR_P"]="/bin/mkdir -p"
S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
S["STRIP"]="strip"
-S["install_sh"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh"
-S["MAKEINFO"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo"
-S["AUTOHEADER"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader"
-S["AUTOMAKE"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15"
-S["AUTOCONF"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf"
-S["ACLOCAL"]="${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15"
+S["install_sh"]="${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh"
+S["MAKEINFO"]="${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo"
+S["AUTOHEADER"]="${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader"
+S["AUTOMAKE"]="${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16"
+S["AUTOCONF"]="${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf"
+S["ACLOCAL"]="${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16"
S["VERSION"]="5prealpha"
S["PACKAGE"]="sphinxbase"
S["CYGPATH_W"]="echo"
@@ -1006,6 +1005,7 @@ S["PACKAGE_TARNAME"]="sphinxbase"
S["PACKAGE_NAME"]="sphinxbase"
S["PATH_SEPARATOR"]=":"
S["SHELL"]="/bin/bash"
+S["am__quote"]=""
_ACAWK
cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
for (key in S) S_is_set[key] = 1
@@ -1408,29 +1408,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ case $CONFIG_FILES in #(
+ *\'*) :
+ eval set x "$CONFIG_FILES" ;; #(
+ *) :
+ set x $CONFIG_FILES ;; #(
+ *) :
+ ;;
+esac
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`$as_dirname -- "$am_mf" ||
+$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$am_mf" : 'X\(//\)[^/]' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$am_mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -1448,53 +1454,48 @@ $as_echo X"$mf" |
q
}
s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
+ am_filepart=`$as_basename -- "$am_mf" ||
+$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$am_mf" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
- /^X\(\/\/\)$/{
+ /^X\/\(\/\/\)$/{
s//\1/
q
}
- /^X\(\/\).*/{
+ /^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles" >&5
+ (cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ { am_dirpart=; unset am_dirpart;}
+ { am_filepart=; unset am_filepart;}
+ { am_mf=; unset am_mf;}
+ { am_rc=; unset am_rc;}
+ rm -f conftest-deps.mk
}
;;
"libtool":C)
@@ -1512,7 +1513,6 @@ $as_echo X"$file" |
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
diff --git a/sphinxbase-5prealpha/configure b/sphinxbase-5prealpha/configure
index 613fe16..68361c4 100755
--- a/sphinxbase-5prealpha/configure
+++ b/sphinxbase-5prealpha/configure
@@ -695,7 +695,6 @@ am__nodep
AMDEPBACKSLASH
AMDEP_FALSE
AMDEP_TRUE
-am__quote
am__include
DEPDIR
OBJEXT
@@ -778,7 +777,8 @@ PACKAGE_VERSION
PACKAGE_TARNAME
PACKAGE_NAME
PATH_SEPARATOR
-SHELL'
+SHELL
+am__quote'
ac_subst_files=''
ac_user_opts='
enable_option_checking
@@ -2508,7 +2508,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
ac_config_headers="$ac_config_headers include/config.h include/sphinx_config.h"
-am__api_version='1.15'
+am__api_version='1.16'
ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
@@ -3044,8 +3044,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-#
-#
+#
+#
mkdir_p='$(MKDIR_P)'
# We need awk for the "check" target (and possibly the TAP driver). The
@@ -3096,7 +3096,7 @@ END
Aborting the configuration process, to ensure you take notice of the issue.
You can download and install GNU coreutils to get an 'rm' implementation
-that behaves properly: .
+that behaves properly: .
If you want to complete the configuration process using your problematic
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -3186,45 +3186,45 @@ DEPDIR="${am__leading_dot}deps"
ac_config_commands="$ac_config_commands depfiles"
-
-am_make=${MAKE-make}
-cat > confinc << 'END'
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
+$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
+cat > confinc.mk << 'END'
am__doit:
- @echo this is the am__doit target
+ @echo this is the am__doit target >confinc.out
.PHONY: am__doit
END
-# If we don't find an include directive, just comment out the code.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-$as_echo_n "checking for style of include used by $am_make... " >&6; }
am__include="#"
am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# Ignore all kinds of additional output from 'make'.
-case `$am_make -s -f confmf 2> /dev/null` in #(
-*the\ am__doit\ target*)
- am__include=include
- am__quote=
- _am_result=GNU
- ;;
-esac
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- case `$am_make -s -f confmf 2> /dev/null` in #(
- *the\ am__doit\ target*)
- am__include=.include
- am__quote="\""
- _am_result=BSD
+# BSD make does it like this.
+echo '.include "confinc.mk" # ignored' > confmf.BSD
+# Other make implementations (GNU, Solaris 10, AIX) do it like this.
+echo 'include confinc.mk # ignored' > confmf.GNU
+_am_result=no
+for s in GNU BSD; do
+ { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
+ (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ case $?:`cat confinc.out 2>/dev/null` in #(
+ '0:this is the am__doit target') :
+ case $s in #(
+ BSD) :
+ am__include='.include' am__quote='"' ;; #(
+ *) :
+ am__include='include' am__quote='' ;;
+esac ;; #(
+ *) :
;;
- esac
-fi
-
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-$as_echo "$_am_result" >&6; }
-rm -f confinc confmf
+esac
+ if test "$am__include" != "#"; then
+ _am_result="yes ($s style)"
+ break
+ fi
+done
+rm -f confinc.* confmf.*
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
+$as_echo "${_am_result}" >&6; }
# Check whether --enable-dependency-tracking was given.
if test "${enable_dependency_tracking+set}" = set; then :
@@ -7398,11 +7398,8 @@ _LT_EOF
test $ac_status = 0; }; then
# Now try to grab the symbols.
nlist=conftest.nm
- if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5
- (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; } && test -s "$nlist"; then
+ $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5
+ if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
mv -f "$nlist"T "$nlist"
@@ -14427,7 +14424,7 @@ if ${am_cv_pathless_PYTHON+:} false; then :
$as_echo_n "(cached) " >&6
else
- for am_cv_pathless_PYTHON in python python2 python3 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
+ for am_cv_pathless_PYTHON in python python2 python3 python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
test "$am_cv_pathless_PYTHON" = none && break
prog="import sys
# split strings by '.' and convert to numeric. Append some zeros
@@ -15869,7 +15866,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
#
# INIT-COMMANDS
#
-AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
+AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
# The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -16805,29 +16802,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
# Older Autoconf quotes --file arguments for eval, but not when files
# are listed without --file. Let's play safe and only enable the eval
# if we detect the quoting.
- case $CONFIG_FILES in
- *\'*) eval set x "$CONFIG_FILES" ;;
- *) set x $CONFIG_FILES ;;
- esac
+ # TODO: see whether this extra hack can be removed once we start
+ # requiring Autoconf 2.70 or later.
+ case $CONFIG_FILES in #(
+ *\'*) :
+ eval set x "$CONFIG_FILES" ;; #(
+ *) :
+ set x $CONFIG_FILES ;; #(
+ *) :
+ ;;
+esac
shift
- for mf
+ # Used to flag and report bootstrapping failures.
+ am_rc=0
+ for am_mf
do
# Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named 'Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # Grep'ing the whole file is not good either: AIX grep has a line
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
+ # Check whether this is an Automake generated Makefile which includes
+ # dependency-tracking related rules and includes.
+ # Grep'ing the whole file directly is not great: AIX grep has a line
# limit of 2048, but all sed's we know have understand at least 4000.
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
- dirpart=`$as_dirname -- "$mf" ||
-$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$mf" |
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
+ || continue
+ am_dirpart=`$as_dirname -- "$am_mf" ||
+$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$am_mf" : 'X\(//\)[^/]' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X"$am_mf" |
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
s//\1/
q
@@ -16845,53 +16848,48 @@ $as_echo X"$mf" |
q
}
s/.*/./; q'`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running 'make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "$am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`$as_dirname -- "$file" ||
-$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
+ am_filepart=`$as_basename -- "$am_mf" ||
+$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$am_mf" : 'X\(//\)$' \| \
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
+$as_echo X/"$am_mf" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
s//\1/
q
}
- /^X\(\/\/\)$/{
+ /^X\/\(\/\/\)$/{
s//\1/
q
}
- /^X\(\/\).*/{
+ /^X\/\(\/\).*/{
s//\1/
q
}
s/.*/./; q'`
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles" >&5
+ (cd "$am_dirpart" \
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
+ | $MAKE -f - am--depfiles) >&5 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } || am_rc=$?
done
+ if test $am_rc -ne 0; then
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+as_fn_error $? "Something went wrong bootstrapping makefile fragments
+ for automatic dependency tracking. Try re-running configure with the
+ '--disable-dependency-tracking' option to at least be able to build
+ the package (albeit without support for automatic dependency tracking).
+See \`config.log' for more details" "$LINENO" 5; }
+ fi
+ { am_dirpart=; unset am_dirpart;}
+ { am_filepart=; unset am_filepart;}
+ { am_mf=; unset am_mf;}
+ { am_rc=; unset am_rc;}
+ rm -f conftest-deps.mk
}
;;
"libtool":C)
@@ -16909,7 +16907,6 @@ $as_echo X"$file" |
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
diff --git a/sphinxbase-5prealpha/depcomp b/sphinxbase-5prealpha/depcomp
index fc98710..65cbf70 100755
--- a/sphinxbase-5prealpha/depcomp
+++ b/sphinxbase-5prealpha/depcomp
@@ -1,9 +1,9 @@
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
-scriptversion=2013-05-30.07; # UTC
+scriptversion=2018-03-07.03; # UTC
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2018 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -16,7 +16,7 @@ scriptversion=2013-05-30.07; # UTC
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
+# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
@@ -783,9 +783,9 @@ exit 0
# Local Variables:
# mode: shell-script
# sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
diff --git a/sphinxbase-5prealpha/doc/Makefile b/sphinxbase-5prealpha/doc/Makefile
index 5d62d26..c4396a3 100644
--- a/sphinxbase-5prealpha/doc/Makefile
+++ b/sphinxbase-5prealpha/doc/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# doc/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -155,14 +155,14 @@ MANS = $(man_MANS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/doxyfile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -196,7 +196,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -232,10 +232,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/doc
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/doc
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/doc
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/doc
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -267,7 +267,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -372,8 +372,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -442,7 +442,10 @@ ctags CTAGS:
cscope cscopelist:
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/doc/Makefile.in b/sphinxbase-5prealpha/doc/Makefile.in
index 27ef410..6487710 100644
--- a/sphinxbase-5prealpha/doc/Makefile.in
+++ b/sphinxbase-5prealpha/doc/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -372,8 +372,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -442,7 +442,10 @@ ctags CTAGS:
cscope cscopelist:
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/include/Makefile b/sphinxbase-5prealpha/include/Makefile
index a53ba69..7b0ba2b 100644
--- a/sphinxbase-5prealpha/include/Makefile
+++ b/sphinxbase-5prealpha/include/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# include/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -166,7 +166,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
$(LISP)config.h.in sphinx_config.h.in
# Read a list of newline-separated strings from the standard input,
@@ -216,14 +216,14 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -257,7 +257,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -293,10 +293,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/include
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/include
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/include
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/include
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -328,7 +328,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -386,8 +386,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -548,7 +548,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/include/Makefile.in b/sphinxbase-5prealpha/include/Makefile.in
index 26b76b4..d9f62b1 100644
--- a/sphinxbase-5prealpha/include/Makefile.in
+++ b/sphinxbase-5prealpha/include/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -166,7 +166,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
$(LISP)config.h.in sphinx_config.h.in
# Read a list of newline-separated strings from the standard input,
@@ -386,8 +386,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -548,7 +548,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/include/sphinxbase/Makefile b/sphinxbase-5prealpha/include/sphinxbase/Makefile
index ddccef2..f703144 100644
--- a/sphinxbase-5prealpha/include/sphinxbase/Makefile
+++ b/sphinxbase-5prealpha/include/sphinxbase/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# include/sphinxbase/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -173,14 +173,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -214,7 +214,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -250,10 +250,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/include/sphinxbase
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/include/sphinxbase
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/include/sphinxbase
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/include/sphinxbase
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -285,7 +285,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -368,8 +368,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -460,7 +460,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/include/sphinxbase/Makefile.in b/sphinxbase-5prealpha/include/sphinxbase/Makefile.in
index 76f90ff..9d9a7cf 100644
--- a/sphinxbase-5prealpha/include/sphinxbase/Makefile.in
+++ b/sphinxbase-5prealpha/include/sphinxbase/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -368,8 +368,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -460,7 +460,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/libtool b/sphinxbase-5prealpha/libtool
index 4f6ff43..e6a64c9 100755
--- a/sphinxbase-5prealpha/libtool
+++ b/sphinxbase-5prealpha/libtool
@@ -1,6 +1,5 @@
#! /bin/bash
# Generated automatically by config.status (sphinxbase) 5prealpha
-# Libtool was configured on host pi:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
@@ -51,7 +50,7 @@ build_old_libs=yes
pic_mode=default
# Whether or not to optimize for fast installation.
-fast_install=yes
+fast_install=needless
# Shared archive member basename,for filename based shared library versioning on AIX.
shared_archive_member_spec=
@@ -250,7 +249,7 @@ runpath_var=LD_RUN_PATH
shlibpath_var=LD_LIBRARY_PATH
# Is shlibpath searched before the hard-coded library search path?
-shlibpath_overrides_runpath=no
+shlibpath_overrides_runpath=yes
# Format of library name prefix.
libname_spec="lib\$name"
@@ -282,10 +281,10 @@ finish_eval=""
hardcode_into_libs=yes
# Compile-time system search path for libraries.
-sys_lib_search_path_spec="/usr/lib/gcc/arm-linux-gnueabihf/5 /usr/lib/arm-linux-gnueabihf /usr/lib /lib/arm-linux-gnueabihf /lib "
+sys_lib_search_path_spec="/usr/lib/gcc/arm-linux-gnueabihf/8 /usr/lib/arm-linux-gnueabihf /usr/lib /lib/arm-linux-gnueabihf /lib "
# Detected run-time system search path for libraries.
-sys_lib_dlsearch_path_spec="/lib /usr/lib /opt/vc/lib /lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/mesa-egl /usr/lib/arm-linux-gnueabihf/mesa /usr/local/lib /usr/local/lib "
+sys_lib_dlsearch_path_spec="/lib /usr/lib /opt/vc/lib /usr/local/lib/arm-linux-gnueabihf /lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf /usr/lib/arm-linux-gnueabihf/libfakeroot /usr/local/lib "
# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.
configure_time_lt_sys_library_path=""
@@ -529,7 +528,7 @@ func_cc_basename ()
PROGRAM=libtool
PACKAGE=libtool
-VERSION="2.4.6 Debian-2.4.6-0.1"
+VERSION="2.4.6 Debian-2.4.6-9"
package_revision=2.4.6
@@ -1868,7 +1867,7 @@ func_lt_ver ()
#! /bin/sh
# Set a version string for this script.
-scriptversion=2014-01-07.03; # UTC
+scriptversion=2015-10-07.11; # UTC
# A portable, pluggable option parser for Bourne shell.
# Written by Gary V. Vaughan, 2010
@@ -2028,6 +2027,8 @@ func_run_hooks ()
{
$debug_cmd
+ _G_rc_run_hooks=false
+
case " $hookable_fns " in
*" $1 "*) ;;
*) func_fatal_error "'$1' does not support hook funcions.n" ;;
@@ -2036,16 +2037,16 @@ func_run_hooks ()
eval _G_hook_fns=\$$1_hooks; shift
for _G_hook in $_G_hook_fns; do
- eval $_G_hook '"$@"'
-
- # store returned options list back into positional
- # parameters for next 'cmd' execution.
- eval _G_hook_result=\$${_G_hook}_result
- eval set dummy "$_G_hook_result"; shift
+ if eval $_G_hook '"$@"'; then
+ # store returned options list back into positional
+ # parameters for next 'cmd' execution.
+ eval _G_hook_result=\$${_G_hook}_result
+ eval set dummy "$_G_hook_result"; shift
+ _G_rc_run_hooks=:
+ fi
done
- func_quote_for_eval ${1+"$@"}
- func_run_hooks_result=$func_quote_for_eval_result
+ $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result
}
@@ -2055,10 +2056,16 @@ func_run_hooks ()
## --------------- ##
# In order to add your own option parsing hooks, you must accept the
-# full positional parameter list in your hook function, remove any
-# options that you action, and then pass back the remaining unprocessed
+# full positional parameter list in your hook function, you may remove/edit
+# any options that you action, and then pass back the remaining unprocessed
# options in '_result', escaped suitably for
-# 'eval'. Like this:
+# 'eval'. In this case you also must return $EXIT_SUCCESS to let the
+# hook's caller know that it should pay attention to
+# '_result'. Returning $EXIT_FAILURE signalizes that
+# arguments are left untouched by the hook and therefore caller will ignore the
+# result variable.
+#
+# Like this:
#
# my_options_prep ()
# {
@@ -2068,9 +2075,11 @@ func_run_hooks ()
# usage_message=$usage_message'
# -s, --silent don'\''t print informational messages
# '
-#
-# func_quote_for_eval ${1+"$@"}
-# my_options_prep_result=$func_quote_for_eval_result
+# # No change in '$@' (ignored completely by this hook). There is
+# # no need to do the equivalent (but slower) action:
+# # func_quote_for_eval ${1+"$@"}
+# # my_options_prep_result=$func_quote_for_eval_result
+# false
# }
# func_add_hook func_options_prep my_options_prep
#
@@ -2079,25 +2088,37 @@ func_run_hooks ()
# {
# $debug_cmd
#
+# args_changed=false
+#
# # Note that for efficiency, we parse as many options as we can
# # recognise in a loop before passing the remainder back to the
# # caller on the first unrecognised argument we encounter.
# while test $# -gt 0; do
# opt=$1; shift
# case $opt in
-# --silent|-s) opt_silent=: ;;
+# --silent|-s) opt_silent=:
+# args_changed=:
+# ;;
# # Separate non-argument short options:
# -s*) func_split_short_opt "$_G_opt"
# set dummy "$func_split_short_opt_name" \
# "-$func_split_short_opt_arg" ${1+"$@"}
# shift
+# args_changed=:
# ;;
-# *) set dummy "$_G_opt" "$*"; shift; break ;;
+# *) # Make sure the first unrecognised option "$_G_opt"
+# # is added back to "$@", we could need that later
+# # if $args_changed is true.
+# set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
# esac
# done
#
-# func_quote_for_eval ${1+"$@"}
-# my_silent_option_result=$func_quote_for_eval_result
+# if $args_changed; then
+# func_quote_for_eval ${1+"$@"}
+# my_silent_option_result=$func_quote_for_eval_result
+# fi
+#
+# $args_changed
# }
# func_add_hook func_parse_options my_silent_option
#
@@ -2109,16 +2130,32 @@ func_run_hooks ()
# $opt_silent && $opt_verbose && func_fatal_help "\
# '--silent' and '--verbose' options are mutually exclusive."
#
-# func_quote_for_eval ${1+"$@"}
-# my_option_validation_result=$func_quote_for_eval_result
+# false
# }
# func_add_hook func_validate_options my_option_validation
#
-# You'll alse need to manually amend $usage_message to reflect the extra
+# You'll also need to manually amend $usage_message to reflect the extra
# options you parse. It's preferable to append if you can, so that
# multiple option parsing hooks can be added safely.
+# func_options_finish [ARG]...
+# ----------------------------
+# Finishing the option parse loop (call 'func_options' hooks ATM).
+func_options_finish ()
+{
+ $debug_cmd
+
+ _G_func_options_finish_exit=false
+ if func_run_hooks func_options ${1+"$@"}; then
+ func_options_finish_result=$func_run_hooks_result
+ _G_func_options_finish_exit=:
+ fi
+
+ $_G_func_options_finish_exit
+}
+
+
# func_options [ARG]...
# ---------------------
# All the functions called inside func_options are hookable. See the
@@ -2128,17 +2165,28 @@ func_options ()
{
$debug_cmd
- func_options_prep ${1+"$@"}
- eval func_parse_options \
- ${func_options_prep_result+"$func_options_prep_result"}
- eval func_validate_options \
- ${func_parse_options_result+"$func_parse_options_result"}
+ _G_rc_options=false
- eval func_run_hooks func_options \
- ${func_validate_options_result+"$func_validate_options_result"}
+ for my_func in options_prep parse_options validate_options options_finish
+ do
+ if eval func_$my_func '${1+"$@"}'; then
+ eval _G_res_var='$'"func_${my_func}_result"
+ eval set dummy "$_G_res_var" ; shift
+ _G_rc_options=:
+ fi
+ done
+
+ # Save modified positional parameters for caller. As a top-level
+ # options-parser function we always need to set the 'func_options_result'
+ # variable (regardless the $_G_rc_options value).
+ if $_G_rc_options; then
+ func_options_result=$_G_res_var
+ else
+ func_quote_for_eval ${1+"$@"}
+ func_options_result=$func_quote_for_eval_result
+ fi
- # save modified positional parameters for caller
- func_options_result=$func_run_hooks_result
+ $_G_rc_options
}
@@ -2147,9 +2195,9 @@ func_options ()
# All initialisations required before starting the option parse loop.
# Note that when calling hook functions, we pass through the list of
# positional parameters. If a hook function modifies that list, and
-# needs to propogate that back to rest of this script, then the complete
+# needs to propagate that back to rest of this script, then the complete
# modified list must be put in 'func_run_hooks_result' before
-# returning.
+# returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned).
func_hookable func_options_prep
func_options_prep ()
{
@@ -2159,10 +2207,14 @@ func_options_prep ()
opt_verbose=false
opt_warning_types=
- func_run_hooks func_options_prep ${1+"$@"}
+ _G_rc_options_prep=false
+ if func_run_hooks func_options_prep ${1+"$@"}; then
+ _G_rc_options_prep=:
+ # save modified positional parameters for caller
+ func_options_prep_result=$func_run_hooks_result
+ fi
- # save modified positional parameters for caller
- func_options_prep_result=$func_run_hooks_result
+ $_G_rc_options_prep
}
@@ -2176,18 +2228,20 @@ func_parse_options ()
func_parse_options_result=
+ _G_rc_parse_options=false
# this just eases exit handling
while test $# -gt 0; do
# Defer to hook functions for initial option parsing, so they
# get priority in the event of reusing an option name.
- func_run_hooks func_parse_options ${1+"$@"}
-
- # Adjust func_parse_options positional parameters to match
- eval set dummy "$func_run_hooks_result"; shift
+ if func_run_hooks func_parse_options ${1+"$@"}; then
+ eval set dummy "$func_run_hooks_result"; shift
+ _G_rc_parse_options=:
+ fi
# Break out of the loop if we already parsed every option.
test $# -gt 0 || break
+ _G_match_parse_options=:
_G_opt=$1
shift
case $_G_opt in
@@ -2202,7 +2256,10 @@ func_parse_options ()
;;
--warnings|--warning|-W)
- test $# = 0 && func_missing_arg $_G_opt && break
+ if test $# = 0 && func_missing_arg $_G_opt; then
+ _G_rc_parse_options=:
+ break
+ fi
case " $warning_categories $1" in
*" $1 "*)
# trailing space prevents matching last $1 above
@@ -2255,15 +2312,25 @@ func_parse_options ()
shift
;;
- --) break ;;
+ --) _G_rc_parse_options=: ; break ;;
-*) func_fatal_help "unrecognised option: '$_G_opt'" ;;
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+ *) set dummy "$_G_opt" ${1+"$@"}; shift
+ _G_match_parse_options=false
+ break
+ ;;
esac
+
+ $_G_match_parse_options && _G_rc_parse_options=:
done
- # save modified positional parameters for caller
- func_quote_for_eval ${1+"$@"}
- func_parse_options_result=$func_quote_for_eval_result
+
+ if $_G_rc_parse_options; then
+ # save modified positional parameters for caller
+ func_quote_for_eval ${1+"$@"}
+ func_parse_options_result=$func_quote_for_eval_result
+ fi
+
+ $_G_rc_parse_options
}
@@ -2276,16 +2343,21 @@ func_validate_options ()
{
$debug_cmd
+ _G_rc_validate_options=false
+
# Display all warnings if -W was not given.
test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
- func_run_hooks func_validate_options ${1+"$@"}
+ if func_run_hooks func_validate_options ${1+"$@"}; then
+ # save modified positional parameters for caller
+ func_validate_options_result=$func_run_hooks_result
+ _G_rc_validate_options=:
+ fi
# Bail if the options were screwed!
$exit_cmd $EXIT_FAILURE
- # save modified positional parameters for caller
- func_validate_options_result=$func_run_hooks_result
+ $_G_rc_validate_options
}
@@ -2566,7 +2638,7 @@ include the following information:
compiler: $LTCC
compiler flags: $LTCFLAGS
linker: $LD (gnu? $with_gnu_ld)
- version: $progname (GNU libtool) 2.4.6
+ version: $progname $scriptversion Debian-2.4.6-9
automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
@@ -2768,6 +2840,8 @@ libtool_options_prep ()
nonopt=
preserve_args=
+ _G_rc_lt_options_prep=:
+
# Shorthand for --mode=foo, only valid as the first argument
case $1 in
clean|clea|cle|cl)
@@ -2791,11 +2865,18 @@ libtool_options_prep ()
uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
shift; set dummy --mode uninstall ${1+"$@"}; shift
;;
+ *)
+ _G_rc_lt_options_prep=false
+ ;;
esac
- # Pass back the list of options.
- func_quote_for_eval ${1+"$@"}
- libtool_options_prep_result=$func_quote_for_eval_result
+ if $_G_rc_lt_options_prep; then
+ # Pass back the list of options.
+ func_quote_for_eval ${1+"$@"}
+ libtool_options_prep_result=$func_quote_for_eval_result
+ fi
+
+ $_G_rc_lt_options_prep
}
func_add_hook func_options_prep libtool_options_prep
@@ -2807,9 +2888,12 @@ libtool_parse_options ()
{
$debug_cmd
+ _G_rc_lt_parse_options=false
+
# Perform our own loop to consume as many options as possible in
# each iteration.
while test $# -gt 0; do
+ _G_match_lt_parse_options=:
_G_opt=$1
shift
case $_G_opt in
@@ -2884,15 +2968,22 @@ libtool_parse_options ()
func_append preserve_args " $_G_opt"
;;
- # An option not handled by this hook function:
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+ # An option not handled by this hook function:
+ *) set dummy "$_G_opt" ${1+"$@"} ; shift
+ _G_match_lt_parse_options=false
+ break
+ ;;
esac
+ $_G_match_lt_parse_options && _G_rc_lt_parse_options=:
done
+ if $_G_rc_lt_parse_options; then
+ # save modified positional parameters for caller
+ func_quote_for_eval ${1+"$@"}
+ libtool_parse_options_result=$func_quote_for_eval_result
+ fi
- # save modified positional parameters for caller
- func_quote_for_eval ${1+"$@"}
- libtool_parse_options_result=$func_quote_for_eval_result
+ $_G_rc_lt_parse_options
}
func_add_hook func_parse_options libtool_parse_options
@@ -7773,10 +7864,11 @@ func_mode_link ()
# -specs=* GCC specs files
# -stdlib=* select c++ std lib with clang
# -fsanitize=* Clang/GCC memory and address sanitizer
+ # -fuse-ld=* Linker select flags for GCC
-64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
-t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
-O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
- -specs=*|-fsanitize=*)
+ -specs=*|-fsanitize=*|-fuse-ld=*)
func_quote_for_eval "$arg"
arg=$func_quote_for_eval_result
func_append compile_command " $arg"
diff --git a/sphinxbase-5prealpha/ltmain.sh b/sphinxbase-5prealpha/ltmain.sh
index 147d758..c12c197 100644
--- a/sphinxbase-5prealpha/ltmain.sh
+++ b/sphinxbase-5prealpha/ltmain.sh
@@ -31,7 +31,7 @@
PROGRAM=libtool
PACKAGE=libtool
-VERSION="2.4.6 Debian-2.4.6-0.1"
+VERSION="2.4.6 Debian-2.4.6-9"
package_revision=2.4.6
@@ -1370,7 +1370,7 @@ func_lt_ver ()
#! /bin/sh
# Set a version string for this script.
-scriptversion=2014-01-07.03; # UTC
+scriptversion=2015-10-07.11; # UTC
# A portable, pluggable option parser for Bourne shell.
# Written by Gary V. Vaughan, 2010
@@ -1530,6 +1530,8 @@ func_run_hooks ()
{
$debug_cmd
+ _G_rc_run_hooks=false
+
case " $hookable_fns " in
*" $1 "*) ;;
*) func_fatal_error "'$1' does not support hook funcions.n" ;;
@@ -1538,16 +1540,16 @@ func_run_hooks ()
eval _G_hook_fns=\$$1_hooks; shift
for _G_hook in $_G_hook_fns; do
- eval $_G_hook '"$@"'
-
- # store returned options list back into positional
- # parameters for next 'cmd' execution.
- eval _G_hook_result=\$${_G_hook}_result
- eval set dummy "$_G_hook_result"; shift
+ if eval $_G_hook '"$@"'; then
+ # store returned options list back into positional
+ # parameters for next 'cmd' execution.
+ eval _G_hook_result=\$${_G_hook}_result
+ eval set dummy "$_G_hook_result"; shift
+ _G_rc_run_hooks=:
+ fi
done
- func_quote_for_eval ${1+"$@"}
- func_run_hooks_result=$func_quote_for_eval_result
+ $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result
}
@@ -1557,10 +1559,16 @@ func_run_hooks ()
## --------------- ##
# In order to add your own option parsing hooks, you must accept the
-# full positional parameter list in your hook function, remove any
-# options that you action, and then pass back the remaining unprocessed
+# full positional parameter list in your hook function, you may remove/edit
+# any options that you action, and then pass back the remaining unprocessed
# options in '_result', escaped suitably for
-# 'eval'. Like this:
+# 'eval'. In this case you also must return $EXIT_SUCCESS to let the
+# hook's caller know that it should pay attention to
+# '_result'. Returning $EXIT_FAILURE signalizes that
+# arguments are left untouched by the hook and therefore caller will ignore the
+# result variable.
+#
+# Like this:
#
# my_options_prep ()
# {
@@ -1570,9 +1578,11 @@ func_run_hooks ()
# usage_message=$usage_message'
# -s, --silent don'\''t print informational messages
# '
-#
-# func_quote_for_eval ${1+"$@"}
-# my_options_prep_result=$func_quote_for_eval_result
+# # No change in '$@' (ignored completely by this hook). There is
+# # no need to do the equivalent (but slower) action:
+# # func_quote_for_eval ${1+"$@"}
+# # my_options_prep_result=$func_quote_for_eval_result
+# false
# }
# func_add_hook func_options_prep my_options_prep
#
@@ -1581,25 +1591,37 @@ func_run_hooks ()
# {
# $debug_cmd
#
+# args_changed=false
+#
# # Note that for efficiency, we parse as many options as we can
# # recognise in a loop before passing the remainder back to the
# # caller on the first unrecognised argument we encounter.
# while test $# -gt 0; do
# opt=$1; shift
# case $opt in
-# --silent|-s) opt_silent=: ;;
+# --silent|-s) opt_silent=:
+# args_changed=:
+# ;;
# # Separate non-argument short options:
# -s*) func_split_short_opt "$_G_opt"
# set dummy "$func_split_short_opt_name" \
# "-$func_split_short_opt_arg" ${1+"$@"}
# shift
+# args_changed=:
# ;;
-# *) set dummy "$_G_opt" "$*"; shift; break ;;
+# *) # Make sure the first unrecognised option "$_G_opt"
+# # is added back to "$@", we could need that later
+# # if $args_changed is true.
+# set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
# esac
# done
#
-# func_quote_for_eval ${1+"$@"}
-# my_silent_option_result=$func_quote_for_eval_result
+# if $args_changed; then
+# func_quote_for_eval ${1+"$@"}
+# my_silent_option_result=$func_quote_for_eval_result
+# fi
+#
+# $args_changed
# }
# func_add_hook func_parse_options my_silent_option
#
@@ -1611,16 +1633,32 @@ func_run_hooks ()
# $opt_silent && $opt_verbose && func_fatal_help "\
# '--silent' and '--verbose' options are mutually exclusive."
#
-# func_quote_for_eval ${1+"$@"}
-# my_option_validation_result=$func_quote_for_eval_result
+# false
# }
# func_add_hook func_validate_options my_option_validation
#
-# You'll alse need to manually amend $usage_message to reflect the extra
+# You'll also need to manually amend $usage_message to reflect the extra
# options you parse. It's preferable to append if you can, so that
# multiple option parsing hooks can be added safely.
+# func_options_finish [ARG]...
+# ----------------------------
+# Finishing the option parse loop (call 'func_options' hooks ATM).
+func_options_finish ()
+{
+ $debug_cmd
+
+ _G_func_options_finish_exit=false
+ if func_run_hooks func_options ${1+"$@"}; then
+ func_options_finish_result=$func_run_hooks_result
+ _G_func_options_finish_exit=:
+ fi
+
+ $_G_func_options_finish_exit
+}
+
+
# func_options [ARG]...
# ---------------------
# All the functions called inside func_options are hookable. See the
@@ -1630,17 +1668,28 @@ func_options ()
{
$debug_cmd
- func_options_prep ${1+"$@"}
- eval func_parse_options \
- ${func_options_prep_result+"$func_options_prep_result"}
- eval func_validate_options \
- ${func_parse_options_result+"$func_parse_options_result"}
+ _G_rc_options=false
- eval func_run_hooks func_options \
- ${func_validate_options_result+"$func_validate_options_result"}
+ for my_func in options_prep parse_options validate_options options_finish
+ do
+ if eval func_$my_func '${1+"$@"}'; then
+ eval _G_res_var='$'"func_${my_func}_result"
+ eval set dummy "$_G_res_var" ; shift
+ _G_rc_options=:
+ fi
+ done
+
+ # Save modified positional parameters for caller. As a top-level
+ # options-parser function we always need to set the 'func_options_result'
+ # variable (regardless the $_G_rc_options value).
+ if $_G_rc_options; then
+ func_options_result=$_G_res_var
+ else
+ func_quote_for_eval ${1+"$@"}
+ func_options_result=$func_quote_for_eval_result
+ fi
- # save modified positional parameters for caller
- func_options_result=$func_run_hooks_result
+ $_G_rc_options
}
@@ -1649,9 +1698,9 @@ func_options ()
# All initialisations required before starting the option parse loop.
# Note that when calling hook functions, we pass through the list of
# positional parameters. If a hook function modifies that list, and
-# needs to propogate that back to rest of this script, then the complete
+# needs to propagate that back to rest of this script, then the complete
# modified list must be put in 'func_run_hooks_result' before
-# returning.
+# returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned).
func_hookable func_options_prep
func_options_prep ()
{
@@ -1661,10 +1710,14 @@ func_options_prep ()
opt_verbose=false
opt_warning_types=
- func_run_hooks func_options_prep ${1+"$@"}
+ _G_rc_options_prep=false
+ if func_run_hooks func_options_prep ${1+"$@"}; then
+ _G_rc_options_prep=:
+ # save modified positional parameters for caller
+ func_options_prep_result=$func_run_hooks_result
+ fi
- # save modified positional parameters for caller
- func_options_prep_result=$func_run_hooks_result
+ $_G_rc_options_prep
}
@@ -1678,18 +1731,20 @@ func_parse_options ()
func_parse_options_result=
+ _G_rc_parse_options=false
# this just eases exit handling
while test $# -gt 0; do
# Defer to hook functions for initial option parsing, so they
# get priority in the event of reusing an option name.
- func_run_hooks func_parse_options ${1+"$@"}
-
- # Adjust func_parse_options positional parameters to match
- eval set dummy "$func_run_hooks_result"; shift
+ if func_run_hooks func_parse_options ${1+"$@"}; then
+ eval set dummy "$func_run_hooks_result"; shift
+ _G_rc_parse_options=:
+ fi
# Break out of the loop if we already parsed every option.
test $# -gt 0 || break
+ _G_match_parse_options=:
_G_opt=$1
shift
case $_G_opt in
@@ -1704,7 +1759,10 @@ func_parse_options ()
;;
--warnings|--warning|-W)
- test $# = 0 && func_missing_arg $_G_opt && break
+ if test $# = 0 && func_missing_arg $_G_opt; then
+ _G_rc_parse_options=:
+ break
+ fi
case " $warning_categories $1" in
*" $1 "*)
# trailing space prevents matching last $1 above
@@ -1757,15 +1815,25 @@ func_parse_options ()
shift
;;
- --) break ;;
+ --) _G_rc_parse_options=: ; break ;;
-*) func_fatal_help "unrecognised option: '$_G_opt'" ;;
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+ *) set dummy "$_G_opt" ${1+"$@"}; shift
+ _G_match_parse_options=false
+ break
+ ;;
esac
+
+ $_G_match_parse_options && _G_rc_parse_options=:
done
- # save modified positional parameters for caller
- func_quote_for_eval ${1+"$@"}
- func_parse_options_result=$func_quote_for_eval_result
+
+ if $_G_rc_parse_options; then
+ # save modified positional parameters for caller
+ func_quote_for_eval ${1+"$@"}
+ func_parse_options_result=$func_quote_for_eval_result
+ fi
+
+ $_G_rc_parse_options
}
@@ -1778,16 +1846,21 @@ func_validate_options ()
{
$debug_cmd
+ _G_rc_validate_options=false
+
# Display all warnings if -W was not given.
test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
- func_run_hooks func_validate_options ${1+"$@"}
+ if func_run_hooks func_validate_options ${1+"$@"}; then
+ # save modified positional parameters for caller
+ func_validate_options_result=$func_run_hooks_result
+ _G_rc_validate_options=:
+ fi
# Bail if the options were screwed!
$exit_cmd $EXIT_FAILURE
- # save modified positional parameters for caller
- func_validate_options_result=$func_run_hooks_result
+ $_G_rc_validate_options
}
@@ -2068,7 +2141,7 @@ include the following information:
compiler: $LTCC
compiler flags: $LTCFLAGS
linker: $LD (gnu? $with_gnu_ld)
- version: $progname (GNU libtool) 2.4.6
+ version: $progname $scriptversion Debian-2.4.6-9
automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
@@ -2270,6 +2343,8 @@ libtool_options_prep ()
nonopt=
preserve_args=
+ _G_rc_lt_options_prep=:
+
# Shorthand for --mode=foo, only valid as the first argument
case $1 in
clean|clea|cle|cl)
@@ -2293,11 +2368,18 @@ libtool_options_prep ()
uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
shift; set dummy --mode uninstall ${1+"$@"}; shift
;;
+ *)
+ _G_rc_lt_options_prep=false
+ ;;
esac
- # Pass back the list of options.
- func_quote_for_eval ${1+"$@"}
- libtool_options_prep_result=$func_quote_for_eval_result
+ if $_G_rc_lt_options_prep; then
+ # Pass back the list of options.
+ func_quote_for_eval ${1+"$@"}
+ libtool_options_prep_result=$func_quote_for_eval_result
+ fi
+
+ $_G_rc_lt_options_prep
}
func_add_hook func_options_prep libtool_options_prep
@@ -2309,9 +2391,12 @@ libtool_parse_options ()
{
$debug_cmd
+ _G_rc_lt_parse_options=false
+
# Perform our own loop to consume as many options as possible in
# each iteration.
while test $# -gt 0; do
+ _G_match_lt_parse_options=:
_G_opt=$1
shift
case $_G_opt in
@@ -2386,15 +2471,22 @@ libtool_parse_options ()
func_append preserve_args " $_G_opt"
;;
- # An option not handled by this hook function:
- *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
+ # An option not handled by this hook function:
+ *) set dummy "$_G_opt" ${1+"$@"} ; shift
+ _G_match_lt_parse_options=false
+ break
+ ;;
esac
+ $_G_match_lt_parse_options && _G_rc_lt_parse_options=:
done
+ if $_G_rc_lt_parse_options; then
+ # save modified positional parameters for caller
+ func_quote_for_eval ${1+"$@"}
+ libtool_parse_options_result=$func_quote_for_eval_result
+ fi
- # save modified positional parameters for caller
- func_quote_for_eval ${1+"$@"}
- libtool_parse_options_result=$func_quote_for_eval_result
+ $_G_rc_lt_parse_options
}
func_add_hook func_parse_options libtool_parse_options
@@ -7275,10 +7367,11 @@ func_mode_link ()
# -specs=* GCC specs files
# -stdlib=* select c++ std lib with clang
# -fsanitize=* Clang/GCC memory and address sanitizer
+ # -fuse-ld=* Linker select flags for GCC
-64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
-t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
-O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
- -specs=*|-fsanitize=*)
+ -specs=*|-fsanitize=*|-fuse-ld=*)
func_quote_for_eval "$arg"
arg=$func_quote_for_eval_result
func_append compile_command " $arg"
diff --git a/sphinxbase-5prealpha/m4/libtool.m4 b/sphinxbase-5prealpha/m4/libtool.m4
index 10ab284..c81e669 100644
--- a/sphinxbase-5prealpha/m4/libtool.m4
+++ b/sphinxbase-5prealpha/m4/libtool.m4
@@ -728,7 +728,6 @@ _LT_CONFIG_SAVE_COMMANDS([
cat <<_LT_EOF >> "$cfgfile"
#! $SHELL
# Generated automatically by $as_me ($PACKAGE) $VERSION
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
# Provide generalized library-building support services.
@@ -4064,7 +4063,8 @@ _LT_EOF
if AC_TRY_EVAL(ac_compile); then
# Now try to grab the symbols.
nlist=conftest.nm
- if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
+ $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&AS_MESSAGE_LOG_FD
+ if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&AS_MESSAGE_LOG_FD && test -s "$nlist"; then
# Try sorting and uniquifying the output.
if sort "$nlist" | uniq > "$nlist"T; then
mv -f "$nlist"T "$nlist"
@@ -6439,7 +6439,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# Commands to make compiler produce verbose output that lists
# what "hidden" libraries, object files and flags are used when
# linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
else
GXX=no
@@ -6814,7 +6814,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# explicitly linking system object files so we need to strip them
# from the output so that they don't get included in the library
# dependencies.
- output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+ output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
;;
*)
if test yes = "$GXX"; then
@@ -6879,7 +6879,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# explicitly linking system object files so we need to strip them
# from the output so that they don't get included in the library
# dependencies.
- output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
+ output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
;;
*)
if test yes = "$GXX"; then
@@ -7218,7 +7218,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# Commands to make compiler produce verbose output that lists
# what "hidden" libraries, object files and flags are used when
# linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
else
# FIXME: insert proper C++ library support
@@ -7302,7 +7302,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# Commands to make compiler produce verbose output that lists
# what "hidden" libraries, object files and flags are used when
# linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+ output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
else
# g++ 2.7 appears to require '-G' NOT '-shared' on this
# platform.
@@ -7313,7 +7313,7 @@ if test yes != "$_lt_caught_CXX_error"; then
# Commands to make compiler produce verbose output that lists
# what "hidden" libraries, object files and flags are used when
# linking a shared library.
- output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
+ output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
fi
_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir'
diff --git a/sphinxbase-5prealpha/missing b/sphinxbase-5prealpha/missing
index f62bbae..625aeb1 100755
--- a/sphinxbase-5prealpha/missing
+++ b/sphinxbase-5prealpha/missing
@@ -1,9 +1,9 @@
#! /bin/sh
# Common wrapper for a few potentially missing GNU programs.
-scriptversion=2013-10-28.13; # UTC
+scriptversion=2018-03-07.03; # UTC
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2018 Free Software Foundation, Inc.
# Originally written by Fran,cois Pinard , 1996.
# This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@ scriptversion=2013-10-28.13; # UTC
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
+# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
@@ -101,9 +101,9 @@ else
exit $st
fi
-perl_URL=http://www.perl.org/
-flex_URL=http://flex.sourceforge.net/
-gnu_software_URL=http://www.gnu.org/software
+perl_URL=https://www.perl.org/
+flex_URL=https://github.com/westes/flex
+gnu_software_URL=https://www.gnu.org/software
program_details ()
{
@@ -207,9 +207,9 @@ give_advice "$1" | sed -e '1s/^/WARNING: /' \
exit $st
# Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
# time-stamp-end: "; # UTC"
# End:
diff --git a/sphinxbase-5prealpha/sphinxbase.pc b/sphinxbase-5prealpha/sphinxbase.pc
new file mode 100644
index 0000000..41cb95b
--- /dev/null
+++ b/sphinxbase-5prealpha/sphinxbase.pc
@@ -0,0 +1,15 @@
+prefix=/usr/local
+exec_prefix=${prefix}
+libdir=${exec_prefix}/lib
+includedir=${prefix}/include
+libs="-lpthread -lm -lblas -llapack "
+datadir=${prefix}/share/sphinxbase
+
+Name: SphinxBase
+Description: Shared components for Sphinx speech recognition
+Version: 5prealpha
+URL: http://www.cmusphinx.org/
+Libs: -L${libdir} -lsphinxbase -lsphinxad -lpthread -lm -lblas -llapack
+Libs.private: ${libs}
+Cflags: -I${includedir} -I${includedir}/sphinxbase
+
diff --git a/sphinxbase-5prealpha/src/Makefile b/sphinxbase-5prealpha/src/Makefile
index 323fbe4..0413337 100644
--- a/sphinxbase-5prealpha/src/Makefile
+++ b/sphinxbase-5prealpha/src/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -184,14 +184,14 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -225,7 +225,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -261,10 +261,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +296,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -345,8 +345,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -463,7 +463,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/src/Makefile.in b/sphinxbase-5prealpha/src/Makefile.in
index ad75f16..7b621b7 100644
--- a/sphinxbase-5prealpha/src/Makefile.in
+++ b/sphinxbase-5prealpha/src/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -345,8 +345,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -463,7 +463,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/src/libsphinxad/.deps/ad_oss.Plo b/sphinxbase-5prealpha/src/libsphinxad/.deps/ad_oss.Plo
index 31bdf71..49e405c 100644
--- a/sphinxbase-5prealpha/src/libsphinxad/.deps/ad_oss.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxad/.deps/ad_oss.Plo
@@ -1,42 +1,55 @@
ad_oss.lo: ad_oss.c /usr/include/stdc-predef.h /usr/include/fcntl.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
/usr/include/arm-linux-gnueabihf/bits/fcntl.h \
- /usr/include/arm-linux-gnueabihf/bits/fcntl-linux.h /usr/include/time.h \
- /usr/include/arm-linux-gnueabihf/bits/stat.h \
- /usr/include/arm-linux-gnueabihf/bits/fcntl2.h /usr/include/stdio.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/fcntl-linux.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
+ /usr/include/arm-linux-gnueabihf/bits/stat.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
/usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- /usr/include/arm-linux-gnueabihf/sys/soundcard.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/arm-linux-gnueabihf/sys/soundcard.h \
/usr/include/linux/soundcard.h /usr/include/linux/ioctl.h \
/usr/include/arm-linux-gnueabihf/asm/ioctl.h \
/usr/include/asm-generic/ioctl.h /usr/include/linux/patchkey.h \
@@ -51,10 +64,11 @@ ad_oss.lo: ad_oss.c /usr/include/stdc-predef.h /usr/include/fcntl.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/unistd.h /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
/usr/include/arm-linux-gnueabihf/bits/environments.h \
- /usr/include/arm-linux-gnueabihf/bits/confname.h /usr/include/getopt.h \
- /usr/include/arm-linux-gnueabihf/bits/unistd.h ../../include/config.h \
- ../../include/sphinxbase/prim_type.h ../../include/sphinx_config.h \
- ../../include/sphinxbase/ad.h \
+ /usr/include/arm-linux-gnueabihf/bits/confname.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_posix.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_core.h \
+ ../../include/config.h ../../include/sphinxbase/prim_type.h \
+ ../../include/sphinx_config.h ../../include/sphinxbase/ad.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/prim_type.h
@@ -68,6 +82,8 @@ ad_oss.lo: ad_oss.c /usr/include/stdc-predef.h /usr/include/fcntl.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
@@ -80,23 +96,29 @@ ad_oss.lo: ad_oss.c /usr/include/stdc-predef.h /usr/include/fcntl.h \
/usr/include/arm-linux-gnueabihf/bits/fcntl-linux.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/usr/include/arm-linux-gnueabihf/bits/fcntl2.h:
-
/usr/include/stdio.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -104,55 +126,65 @@ ad_oss.lo: ad_oss.c /usr/include/stdc-predef.h /usr/include/fcntl.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
-
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/arm-linux-gnueabihf/sys/soundcard.h:
@@ -198,9 +230,9 @@ ad_oss.lo: ad_oss.c /usr/include/stdc-predef.h /usr/include/fcntl.h \
/usr/include/arm-linux-gnueabihf/bits/confname.h:
-/usr/include/getopt.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_posix.h:
-/usr/include/arm-linux-gnueabihf/bits/unistd.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_core.h:
../../include/config.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3 b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3
new file mode 100755
index 0000000..ae8c88e
Binary files /dev/null and b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3 differ
diff --git a/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0 b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0
new file mode 100755
index 0000000..ae8c88e
Binary files /dev/null and b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0 differ
diff --git a/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0T b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0T
new file mode 100755
index 0000000..26718a5
Binary files /dev/null and b/sphinxbase-5prealpha/src/libsphinxad/.libs/libsphinxad.so.3.0.0T differ
diff --git a/sphinxbase-5prealpha/src/libsphinxad/Makefile b/sphinxbase-5prealpha/src/libsphinxad/Makefile
index b533dbc..3a2ba00 100644
--- a/sphinxbase-5prealpha/src/libsphinxad/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxad/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/libsphinxad/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -158,7 +158,10 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/ad_alsa.Plo ./$(DEPDIR)/ad_base.Plo \
+ ./$(DEPDIR)/ad_openal.Plo ./$(DEPDIR)/ad_oss.Plo \
+ ./$(DEPDIR)/ad_pulse.Plo ./$(DEPDIR)/ad_win32.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -207,14 +210,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -248,7 +251,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -284,10 +287,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxad
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxad
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxad
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxad
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -319,7 +322,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -391,8 +394,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -448,12 +451,18 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/ad_alsa.Plo
-include ./$(DEPDIR)/ad_base.Plo
-include ./$(DEPDIR)/ad_openal.Plo
-include ./$(DEPDIR)/ad_oss.Plo
-include ./$(DEPDIR)/ad_pulse.Plo
-include ./$(DEPDIR)/ad_win32.Plo
+include ./$(DEPDIR)/ad_alsa.Plo # am--include-marker
+include ./$(DEPDIR)/ad_base.Plo # am--include-marker
+include ./$(DEPDIR)/ad_openal.Plo # am--include-marker
+include ./$(DEPDIR)/ad_oss.Plo # am--include-marker
+include ./$(DEPDIR)/ad_pulse.Plo # am--include-marker
+include ./$(DEPDIR)/ad_win32.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -534,7 +543,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -607,7 +619,12 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/ad_alsa.Plo
+ -rm -f ./$(DEPDIR)/ad_base.Plo
+ -rm -f ./$(DEPDIR)/ad_openal.Plo
+ -rm -f ./$(DEPDIR)/ad_oss.Plo
+ -rm -f ./$(DEPDIR)/ad_pulse.Plo
+ -rm -f ./$(DEPDIR)/ad_win32.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -653,7 +670,12 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/ad_alsa.Plo
+ -rm -f ./$(DEPDIR)/ad_base.Plo
+ -rm -f ./$(DEPDIR)/ad_openal.Plo
+ -rm -f ./$(DEPDIR)/ad_oss.Plo
+ -rm -f ./$(DEPDIR)/ad_pulse.Plo
+ -rm -f ./$(DEPDIR)/ad_win32.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -674,9 +696,9 @@ uninstall-am: uninstall-libLTLIBRARIES
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
+ ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
html-am info info-am install install-am install-data \
install-data-am install-dvi install-dvi-am install-exec \
diff --git a/sphinxbase-5prealpha/src/libsphinxad/Makefile.in b/sphinxbase-5prealpha/src/libsphinxad/Makefile.in
index daadf28..0444edf 100644
--- a/sphinxbase-5prealpha/src/libsphinxad/Makefile.in
+++ b/sphinxbase-5prealpha/src/libsphinxad/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -158,7 +158,10 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/ad_alsa.Plo ./$(DEPDIR)/ad_base.Plo \
+ ./$(DEPDIR)/ad_openal.Plo ./$(DEPDIR)/ad_oss.Plo \
+ ./$(DEPDIR)/ad_pulse.Plo ./$(DEPDIR)/ad_win32.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -391,8 +394,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -448,12 +451,18 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_alsa.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_base.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_openal.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_oss.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_pulse.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_win32.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_alsa.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_base.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_openal.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_oss.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_pulse.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ad_win32.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -534,7 +543,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -607,7 +619,12 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/ad_alsa.Plo
+ -rm -f ./$(DEPDIR)/ad_base.Plo
+ -rm -f ./$(DEPDIR)/ad_openal.Plo
+ -rm -f ./$(DEPDIR)/ad_oss.Plo
+ -rm -f ./$(DEPDIR)/ad_pulse.Plo
+ -rm -f ./$(DEPDIR)/ad_win32.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -653,7 +670,12 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/ad_alsa.Plo
+ -rm -f ./$(DEPDIR)/ad_base.Plo
+ -rm -f ./$(DEPDIR)/ad_openal.Plo
+ -rm -f ./$(DEPDIR)/ad_oss.Plo
+ -rm -f ./$(DEPDIR)/ad_pulse.Plo
+ -rm -f ./$(DEPDIR)/ad_win32.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -674,9 +696,9 @@ uninstall-am: uninstall-libLTLIBRARIES
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libLTLIBRARIES clean-libtool cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libLTLIBRARIES clean-libtool cscopelist-am \
+ ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
html-am info info-am install install-am install-data \
install-data-am install-dvi install-dvi-am install-exec \
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3 b/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3
new file mode 100755
index 0000000..8aa9161
Binary files /dev/null and b/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3 differ
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3.0.0 b/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3.0.0
new file mode 100755
index 0000000..8aa9161
Binary files /dev/null and b/sphinxbase-5prealpha/src/libsphinxbase/.libs/libsphinxbase.so.3.0.0 differ
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/Makefile
index b6dc934..af3e1af 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/libsphinxbase/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -197,7 +197,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -245,14 +245,14 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -286,7 +286,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -322,10 +322,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -357,7 +357,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -412,8 +412,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -574,7 +574,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/Makefile.in b/sphinxbase-5prealpha/src/libsphinxbase/Makefile.in
index d6caf97..6c2c53d 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/Makefile.in
+++ b/sphinxbase-5prealpha/src/libsphinxbase/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -197,7 +197,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -412,8 +412,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -574,7 +574,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_interface.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_interface.Plo
index 74d3cf8..6f08708 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_interface.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_interface.Plo
@@ -1,53 +1,66 @@
fe_interface.lo: fe_interface.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
- /usr/include/arm-linux-gnueabihf/bits/mathinline.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathinline.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/assert.h \
- ../../../include/config.h ../../../include/sphinxbase/prim_type.h \
- ../../../include/sphinx_config.h ../../../include/sphinxbase/byteorder.h \
+ /usr/include/assert.h ../../../include/config.h \
+ ../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
+ ../../../include/sphinxbase/byteorder.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -59,8 +72,7 @@ fe_interface.lo: fe_interface.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h fe_internal.h \
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h fe_internal.h \
../../../include/sphinxbase/fe.h fe_noise.h fe_type.h fe_prespch_buf.h \
fe_warp.h
@@ -68,29 +80,39 @@ fe_interface.lo: fe_interface.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -98,19 +120,13 @@ fe_interface.lo: fe_interface.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/math.h:
@@ -118,60 +134,72 @@ fe_interface.lo: fe_interface.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/assert.h:
../../../include/config.h:
@@ -184,9 +212,9 @@ fe_interface.lo: fe_interface.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -224,8 +252,6 @@ fe_interface.lo: fe_interface.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
fe_internal.h:
../../../include/sphinxbase/fe.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_noise.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_noise.Plo
index 7f2947d..220f593 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_noise.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_noise.Plo
@@ -1,60 +1,71 @@
fe_noise.lo: fe_noise.c /usr/include/stdc-predef.h \
- ../../../include/config.h /usr/include/math.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ ../../../include/config.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/strfuncs.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
../../../include/sphinxbase/err.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
fe_noise.h ../../../include/sphinxbase/fe.h \
../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -67,31 +78,39 @@ fe_noise.lo: fe_noise.c /usr/include/stdc-predef.h \
/usr/include/math.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
+/usr/include/arm-linux-gnueabihf/bits/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -105,71 +124,81 @@ fe_noise.lo: fe_noise.c /usr/include/stdc-predef.h \
/usr/include/stdlib.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
-/usr/include/arm-linux-gnueabihf/bits/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
-/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/strfuncs.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
../../../include/sphinxbase/err.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -177,8 +206,6 @@ fe_noise.lo: fe_noise.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -199,9 +226,9 @@ fe_noise.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_prespch_buf.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_prespch_buf.Plo
index ddc6984..d68c7b9 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_prespch_buf.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_prespch_buf.Plo
@@ -1,41 +1,54 @@
fe_prespch_buf.lo: fe_prespch_buf.c /usr/include/stdc-predef.h \
- ../../../include/config.h /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ ../../../include/config.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- ../../../include/sphinxbase/ckd_alloc.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
@@ -45,8 +58,8 @@ fe_prespch_buf.lo: fe_prespch_buf.c /usr/include/stdc-predef.h \
fe_prespch_buf.h ../../../include/sphinxbase/fe.h \
../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -58,29 +71,39 @@ fe_prespch_buf.lo: fe_prespch_buf.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -88,68 +111,76 @@ fe_prespch_buf.lo: fe_prespch_buf.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
../../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/prim_type.h:
@@ -178,9 +209,9 @@ fe_prespch_buf.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_sigproc.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_sigproc.Plo
index 9ff7f48..affa65e 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_sigproc.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_sigproc.Plo
@@ -1,57 +1,69 @@
fe_sigproc.lo: fe_sigproc.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/assert.h \
- ../../../include/config.h ../../../include/sphinxbase/prim_type.h \
- ../../../include/sphinx_config.h ../../../include/sphinxbase/ckd_alloc.h \
- /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/assert.h ../../../include/config.h \
+ ../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/byteorder.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -67,29 +79,39 @@ fe_sigproc.lo: fe_sigproc.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -97,25 +119,23 @@ fe_sigproc.lo: fe_sigproc.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/math.h:
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -123,54 +143,62 @@ fe_sigproc.lo: fe_sigproc.c /usr/include/stdc-predef.h \
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
/usr/include/stdlib.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
-
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/assert.h:
../../../include/config.h:
@@ -185,17 +213,15 @@ fe_sigproc.lo: fe_sigproc.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/byteorder.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp.Plo
index fb4b603..86b7373 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp.Plo
@@ -2,23 +2,29 @@ fe_warp.lo: fe_warp.c /usr/include/stdc-predef.h fe_warp_inverse_linear.h \
../../../include/sphinxbase/fe.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/cmd_ln.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -27,29 +33,37 @@ fe_warp.lo: fe_warp.c /usr/include/stdc-predef.h fe_warp_inverse_linear.h \
../../../include/config.h fe_noise.h fe_type.h fe_prespch_buf.h \
../../../include/sphinxbase/err.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /usr/include/string.h /usr/include/xlocale.h \
- /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h
/usr/include/stdc-predef.h:
@@ -63,29 +77,39 @@ fe_warp_inverse_linear.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -93,17 +117,15 @@ fe_warp_inverse_linear.h:
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../../include/sphinxbase/prim_type.h:
../../../include/sphinx_config.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -139,40 +161,54 @@ fe_prespch_buf.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -187,12 +223,10 @@ fe_prespch_buf.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_affine.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_affine.Plo
index 4a92d96..c5f0dd2 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_affine.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_affine.Plo
@@ -1,49 +1,60 @@
fe_warp_affine.lo: fe_warp_affine.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/strfuncs.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
@@ -53,8 +64,8 @@ fe_warp_affine.lo: fe_warp_affine.c /usr/include/stdc-predef.h \
fe_warp.h fe_internal.h ../../../include/config.h \
../../../include/sphinxbase/fe.h ../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -65,29 +76,39 @@ fe_warp_affine.lo: fe_warp_affine.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -95,65 +116,73 @@ fe_warp_affine.lo: fe_warp_affine.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/math.h:
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
-
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -161,13 +190,11 @@ fe_warp_affine.lo: fe_warp_affine.c /usr/include/stdc-predef.h \
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/strfuncs.h:
@@ -203,9 +230,9 @@ fe_internal.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_inverse_linear.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_inverse_linear.Plo
index 4ff2651..abbe120 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_inverse_linear.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_inverse_linear.Plo
@@ -1,49 +1,60 @@
fe_warp_inverse_linear.lo: fe_warp_inverse_linear.c \
- /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/strfuncs.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
@@ -53,8 +64,8 @@ fe_warp_inverse_linear.lo: fe_warp_inverse_linear.c \
fe_warp.h fe_internal.h ../../../include/config.h \
../../../include/sphinxbase/fe.h ../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -65,29 +76,39 @@ fe_warp_inverse_linear.lo: fe_warp_inverse_linear.c \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -95,65 +116,73 @@ fe_warp_inverse_linear.lo: fe_warp_inverse_linear.c \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/math.h:
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
-
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -161,13 +190,11 @@ fe_warp_inverse_linear.lo: fe_warp_inverse_linear.c \
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/strfuncs.h:
@@ -203,9 +230,9 @@ fe_internal.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_piecewise_linear.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_piecewise_linear.Plo
index c7be94d..19d7937 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_piecewise_linear.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fe_warp_piecewise_linear.Plo
@@ -1,49 +1,60 @@
fe_warp_piecewise_linear.lo: fe_warp_piecewise_linear.c \
- /usr/include/stdc-predef.h /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdlib-float.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/strfuncs.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
@@ -53,8 +64,8 @@ fe_warp_piecewise_linear.lo: fe_warp_piecewise_linear.c \
fe_warp.h fe_internal.h ../../../include/config.h \
../../../include/sphinxbase/fe.h ../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -65,29 +76,39 @@ fe_warp_piecewise_linear.lo: fe_warp_piecewise_linear.c \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -95,65 +116,73 @@ fe_warp_piecewise_linear.lo: fe_warp_piecewise_linear.c \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/math.h:
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
-
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -161,13 +190,11 @@ fe_warp_piecewise_linear.lo: fe_warp_piecewise_linear.c \
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/strfuncs.h:
@@ -203,9 +230,9 @@ fe_internal.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fixlog.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fixlog.Plo
index a01ad10..663b6c1 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fixlog.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/fixlog.Plo
@@ -1,11 +1,13 @@
fixlog.lo: fixlog.c /usr/include/stdc-predef.h ../../../include/config.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
- /usr/include/limits.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
+ /usr/include/limits.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
/usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
@@ -14,15 +16,19 @@ fixlog.lo: fixlog.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
../../../include/sphinxbase/sphinxbase_export.h fe_internal.h \
../../../include/sphinxbase/fe.h ../../../include/sphinxbase/cmd_ln.h \
- /usr/include/stdio.h /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/include/stdio.h /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h fe_noise.h fe_type.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h fe_noise.h fe_type.h \
fe_prespch_buf.h
/usr/include/stdc-predef.h:
@@ -35,18 +41,22 @@ fixlog.lo: fixlog.c /usr/include/stdc-predef.h ../../../include/config.h \
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
@@ -69,19 +79,25 @@ fe_internal.h:
/usr/include/stdio.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -89,8 +105,6 @@ fe_internal.h:
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
fe_noise.h:
fe_type.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/yin.Plo b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/yin.Plo
index 1b4a786..ac303eb 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/yin.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/.deps/yin.Plo
@@ -1,50 +1,63 @@
yin.lo: yin.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
../../../include/sphinxbase/yin.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h
/usr/include/stdc-predef.h:
@@ -56,73 +69,89 @@ yin.lo: yin.c /usr/include/stdc-predef.h \
/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -138,13 +167,19 @@ yin.lo: yin.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -152,14 +187,10 @@ yin.lo: yin.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile
index 85a8b79..89d833a 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/libsphinxbase/fe/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -130,7 +130,14 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/fe_interface.Plo \
+ ./$(DEPDIR)/fe_noise.Plo ./$(DEPDIR)/fe_prespch_buf.Plo \
+ ./$(DEPDIR)/fe_sigproc.Plo ./$(DEPDIR)/fe_warp.Plo \
+ ./$(DEPDIR)/fe_warp_affine.Plo \
+ ./$(DEPDIR)/fe_warp_inverse_linear.Plo \
+ ./$(DEPDIR)/fe_warp_piecewise_linear.Plo \
+ ./$(DEPDIR)/fixlog.Plo ./$(DEPDIR)/yin.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -179,14 +186,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -220,7 +227,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -256,10 +263,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/fe
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/fe
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/fe
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/fe
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -291,7 +298,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -364,8 +371,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -397,16 +404,22 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/fe_interface.Plo
-include ./$(DEPDIR)/fe_noise.Plo
-include ./$(DEPDIR)/fe_prespch_buf.Plo
-include ./$(DEPDIR)/fe_sigproc.Plo
-include ./$(DEPDIR)/fe_warp.Plo
-include ./$(DEPDIR)/fe_warp_affine.Plo
-include ./$(DEPDIR)/fe_warp_inverse_linear.Plo
-include ./$(DEPDIR)/fe_warp_piecewise_linear.Plo
-include ./$(DEPDIR)/fixlog.Plo
-include ./$(DEPDIR)/yin.Plo
+include ./$(DEPDIR)/fe_interface.Plo # am--include-marker
+include ./$(DEPDIR)/fe_noise.Plo # am--include-marker
+include ./$(DEPDIR)/fe_prespch_buf.Plo # am--include-marker
+include ./$(DEPDIR)/fe_sigproc.Plo # am--include-marker
+include ./$(DEPDIR)/fe_warp.Plo # am--include-marker
+include ./$(DEPDIR)/fe_warp_affine.Plo # am--include-marker
+include ./$(DEPDIR)/fe_warp_inverse_linear.Plo # am--include-marker
+include ./$(DEPDIR)/fe_warp_piecewise_linear.Plo # am--include-marker
+include ./$(DEPDIR)/fixlog.Plo # am--include-marker
+include ./$(DEPDIR)/yin.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -487,7 +500,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -557,7 +573,16 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/fe_interface.Plo
+ -rm -f ./$(DEPDIR)/fe_noise.Plo
+ -rm -f ./$(DEPDIR)/fe_prespch_buf.Plo
+ -rm -f ./$(DEPDIR)/fe_sigproc.Plo
+ -rm -f ./$(DEPDIR)/fe_warp.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_affine.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_inverse_linear.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_piecewise_linear.Plo
+ -rm -f ./$(DEPDIR)/fixlog.Plo
+ -rm -f ./$(DEPDIR)/yin.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -603,7 +628,16 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/fe_interface.Plo
+ -rm -f ./$(DEPDIR)/fe_noise.Plo
+ -rm -f ./$(DEPDIR)/fe_prespch_buf.Plo
+ -rm -f ./$(DEPDIR)/fe_sigproc.Plo
+ -rm -f ./$(DEPDIR)/fe_warp.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_affine.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_inverse_linear.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_piecewise_linear.Plo
+ -rm -f ./$(DEPDIR)/fixlog.Plo
+ -rm -f ./$(DEPDIR)/yin.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -624,16 +658,16 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-noinstLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile.in b/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile.in
index 689714a..e1a907b 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile.in
+++ b/sphinxbase-5prealpha/src/libsphinxbase/fe/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -130,7 +130,14 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/fe_interface.Plo \
+ ./$(DEPDIR)/fe_noise.Plo ./$(DEPDIR)/fe_prespch_buf.Plo \
+ ./$(DEPDIR)/fe_sigproc.Plo ./$(DEPDIR)/fe_warp.Plo \
+ ./$(DEPDIR)/fe_warp_affine.Plo \
+ ./$(DEPDIR)/fe_warp_inverse_linear.Plo \
+ ./$(DEPDIR)/fe_warp_piecewise_linear.Plo \
+ ./$(DEPDIR)/fixlog.Plo ./$(DEPDIR)/yin.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -364,8 +371,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -397,16 +404,22 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_interface.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_noise.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_prespch_buf.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_sigproc.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_warp.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_warp_affine.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_warp_inverse_linear.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_warp_piecewise_linear.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fixlog.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yin.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_interface.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_noise.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_prespch_buf.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_sigproc.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_warp.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_warp_affine.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_warp_inverse_linear.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fe_warp_piecewise_linear.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fixlog.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yin.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -487,7 +500,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -557,7 +573,16 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/fe_interface.Plo
+ -rm -f ./$(DEPDIR)/fe_noise.Plo
+ -rm -f ./$(DEPDIR)/fe_prespch_buf.Plo
+ -rm -f ./$(DEPDIR)/fe_sigproc.Plo
+ -rm -f ./$(DEPDIR)/fe_warp.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_affine.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_inverse_linear.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_piecewise_linear.Plo
+ -rm -f ./$(DEPDIR)/fixlog.Plo
+ -rm -f ./$(DEPDIR)/yin.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -603,7 +628,16 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/fe_interface.Plo
+ -rm -f ./$(DEPDIR)/fe_noise.Plo
+ -rm -f ./$(DEPDIR)/fe_prespch_buf.Plo
+ -rm -f ./$(DEPDIR)/fe_sigproc.Plo
+ -rm -f ./$(DEPDIR)/fe_warp.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_affine.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_inverse_linear.Plo
+ -rm -f ./$(DEPDIR)/fe_warp_piecewise_linear.Plo
+ -rm -f ./$(DEPDIR)/fixlog.Plo
+ -rm -f ./$(DEPDIR)/yin.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -624,16 +658,16 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-noinstLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/agc.Plo b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/agc.Plo
index 2a62a42..d90d573 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/agc.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/agc.Plo
@@ -1,51 +1,64 @@
agc.lo: agc.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/config.h ../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/config.h \
+ ../../../include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/agc.h ../../../include/sphinxbase/fe.h \
../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -55,33 +68,33 @@ agc.lo: agc.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/config.h:
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
@@ -89,11 +102,17 @@ agc.lo: agc.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -101,46 +120,60 @@ agc.lo: agc.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -161,8 +194,6 @@ agc.lo: agc.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/prim_type.h:
../../../include/sphinx_config.h:
@@ -175,9 +206,9 @@ agc.lo: agc.c /usr/include/stdc-predef.h /usr/include/string.h \
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/cmn.Plo b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/cmn.Plo
index af7b8d8..7972609 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/cmn.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/cmn.Plo
@@ -1,50 +1,62 @@
cmn.lo: cmn.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /usr/include/math.h /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
../../../include/config.h ../../../include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
@@ -54,8 +66,8 @@ cmn.lo: cmn.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../../include/sphinxbase/cmn.h ../../../include/sphinxbase/fe.h \
../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -65,29 +77,39 @@ cmn.lo: cmn.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -95,57 +117,67 @@ cmn.lo: cmn.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -155,17 +187,13 @@ cmn.lo: cmn.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
-
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -179,8 +207,6 @@ cmn.lo: cmn.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/prim_type.h:
@@ -209,9 +235,9 @@ cmn.lo: cmn.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/cmn_live.Plo b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/cmn_live.Plo
index b580983..91c1a15 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/cmn_live.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/cmn_live.Plo
@@ -1,49 +1,62 @@
cmn_live.lo: cmn_live.c /usr/include/stdc-predef.h \
../../../include/config.h ../../../include/sphinxbase/ckd_alloc.h \
- /usr/include/stdlib.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/cmn.h ../../../include/sphinxbase/fe.h \
../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -57,66 +70,82 @@ cmn_live.lo: cmn_live.c /usr/include/stdc-predef.h \
/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/prim_type.h:
@@ -125,15 +154,21 @@ cmn_live.lo: cmn_live.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -141,8 +176,6 @@ cmn_live.lo: cmn_live.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -163,9 +196,9 @@ cmn_live.lo: cmn_live.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/feat.Plo b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/feat.Plo
index 8f15c31..5c287ad 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/feat.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/feat.Plo
@@ -1,27 +1,33 @@
feat.lo: feat.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h /usr/include/string.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/config.h ../../../include/sphinxbase/fe.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/config.h \
+ ../../../include/sphinxbase/fe.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/cmd_ln.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -30,32 +36,39 @@ feat.lo: feat.c /usr/include/stdc-predef.h /usr/include/assert.h \
../../../include/sphinxbase/agc.h ../../../include/sphinxbase/bio.h \
../../../include/sphinxbase/byteorder.h \
../../../include/sphinxbase/pio.h \
- /usr/include/arm-linux-gnueabihf/sys/stat.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/sys/stat.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- ../../../include/sphinxbase/err.h \
+ ../../../include/sphinxbase/err.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
/usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/glist.h
/usr/include/stdc-predef.h:
@@ -68,23 +81,23 @@ feat.lo: feat.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
/usr/include/string.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
-/usr/include/xlocale.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/config.h:
@@ -96,17 +109,23 @@ feat.lo: feat.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -114,17 +133,15 @@ feat.lo: feat.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../../include/sphinxbase/prim_type.h:
../../../include/sphinx_config.h:
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -150,48 +167,64 @@ feat.lo: feat.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
../../../include/sphinxbase/err.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
-
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -210,6 +243,4 @@ feat.lo: feat.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/glist.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/lda.Plo b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/lda.Plo
index c2ca918..93d30f6 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/lda.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/feat/.deps/lda.Plo
@@ -1,52 +1,65 @@
lda.lo: lda.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h /usr/include/string.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/config.h ../../../include/sphinxbase/feat.h \
- /usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/config.h \
+ ../../../include/sphinxbase/feat.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/fe.h ../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
../../../include/sphinxbase/cmn.h ../../../include/sphinxbase/agc.h \
- ../../../include/sphinxbase/ckd_alloc.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/bio.h \
../../../include/sphinxbase/byteorder.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
@@ -64,23 +77,23 @@ lda.lo: lda.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
/usr/include/string.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
-
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/config.h:
@@ -88,17 +101,23 @@ lda.lo: lda.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -106,8 +125,6 @@ lda.lo: lda.c /usr/include/stdc-predef.h /usr/include/assert.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/prim_type.h:
@@ -120,9 +137,9 @@ lda.lo: lda.c /usr/include/stdc-predef.h /usr/include/assert.h \
../../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -140,50 +157,64 @@ lda.lo: lda.c /usr/include/stdc-predef.h /usr/include/assert.h \
../../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/bio.h:
../../../include/sphinxbase/byteorder.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile
index db50327..b6607a1 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/libsphinxbase/feat/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -125,7 +125,10 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/agc.Plo ./$(DEPDIR)/cmn.Plo \
+ ./$(DEPDIR)/cmn_live.Plo ./$(DEPDIR)/feat.Plo \
+ ./$(DEPDIR)/lda.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -173,14 +176,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -214,7 +217,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -250,10 +253,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/feat
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/feat
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/feat
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/feat
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -285,7 +288,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -343,8 +346,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -376,11 +379,17 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/agc.Plo
-include ./$(DEPDIR)/cmn.Plo
-include ./$(DEPDIR)/cmn_live.Plo
-include ./$(DEPDIR)/feat.Plo
-include ./$(DEPDIR)/lda.Plo
+include ./$(DEPDIR)/agc.Plo # am--include-marker
+include ./$(DEPDIR)/cmn.Plo # am--include-marker
+include ./$(DEPDIR)/cmn_live.Plo # am--include-marker
+include ./$(DEPDIR)/feat.Plo # am--include-marker
+include ./$(DEPDIR)/lda.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -461,7 +470,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -531,7 +543,11 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/agc.Plo
+ -rm -f ./$(DEPDIR)/cmn.Plo
+ -rm -f ./$(DEPDIR)/cmn_live.Plo
+ -rm -f ./$(DEPDIR)/feat.Plo
+ -rm -f ./$(DEPDIR)/lda.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -577,7 +593,11 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/agc.Plo
+ -rm -f ./$(DEPDIR)/cmn.Plo
+ -rm -f ./$(DEPDIR)/cmn_live.Plo
+ -rm -f ./$(DEPDIR)/feat.Plo
+ -rm -f ./$(DEPDIR)/lda.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -598,16 +618,16 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-noinstLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile.in b/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile.in
index 4088b18..a5c21fc 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile.in
+++ b/sphinxbase-5prealpha/src/libsphinxbase/feat/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -125,7 +125,10 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/agc.Plo ./$(DEPDIR)/cmn.Plo \
+ ./$(DEPDIR)/cmn_live.Plo ./$(DEPDIR)/feat.Plo \
+ ./$(DEPDIR)/lda.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -343,8 +346,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -376,11 +379,17 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/agc.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmn.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmn_live.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/feat.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lda.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/agc.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmn.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmn_live.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/feat.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lda.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -461,7 +470,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -531,7 +543,11 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/agc.Plo
+ -rm -f ./$(DEPDIR)/cmn.Plo
+ -rm -f ./$(DEPDIR)/cmn_live.Plo
+ -rm -f ./$(DEPDIR)/feat.Plo
+ -rm -f ./$(DEPDIR)/lda.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -577,7 +593,11 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/agc.Plo
+ -rm -f ./$(DEPDIR)/cmn.Plo
+ -rm -f ./$(DEPDIR)/cmn_live.Plo
+ -rm -f ./$(DEPDIR)/feat.Plo
+ -rm -f ./$(DEPDIR)/lda.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -598,16 +618,16 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-noinstLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/fsg_model.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/fsg_model.Plo
index 0d44cca..aecee28 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/fsg_model.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/fsg_model.Plo
@@ -1,40 +1,54 @@
fsg_model.lo: fsg_model.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- ../../../include/sphinxbase/err.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ ../../../include/sphinxbase/err.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/pio.h \
@@ -43,7 +57,6 @@ fsg_model.lo: fsg_model.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/hash_table.h \
../../../include/sphinxbase/glist.h \
@@ -57,29 +70,39 @@ fsg_model.lo: fsg_model.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -87,62 +110,72 @@ fsg_model.lo: fsg_model.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
../../../include/sphinxbase/err.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -173,8 +206,6 @@ fsg_model.lo: fsg_model.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/strfuncs.h:
../../../include/sphinxbase/hash_table.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf.Plo
index e51d77f..af7c8c9 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf.Plo
@@ -1,46 +1,60 @@
jsgf.lo: jsgf.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- ../../../include/sphinxbase/ckd_alloc.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/strfuncs.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
../../../include/sphinxbase/hash_table.h \
../../../include/sphinxbase/glist.h \
../../../include/sphinxbase/filename.h ../../../include/sphinxbase/err.h \
- /usr/include/stdio.h /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/wchar.h /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
@@ -51,87 +65,102 @@ jsgf.lo: jsgf.c /usr/include/stdc-predef.h /usr/include/string.h \
../../../include/sphinxbase/bitvec.h \
../../../include/sphinxbase/listelem_alloc.h jsgf_internal.h \
jsgf_parser.h jsgf_scanner.h /usr/include/inttypes.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h \
- /usr/include/stdint.h /usr/include/arm-linux-gnueabihf/bits/wchar.h
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h \
+ /usr/include/stdint.h /usr/include/arm-linux-gnueabihf/bits/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
../../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/prim_type.h:
@@ -140,7 +169,7 @@ jsgf.lo: jsgf.c /usr/include/stdc-predef.h /usr/include/string.h \
../../../include/sphinxbase/strfuncs.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
../../../include/sphinxbase/hash_table.h:
@@ -152,11 +181,17 @@ jsgf.lo: jsgf.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -164,8 +199,6 @@ jsgf.lo: jsgf.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -198,8 +231,10 @@ jsgf_scanner.h:
/usr/include/inttypes.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h:
/usr/include/stdint.h:
/usr/include/arm-linux-gnueabihf/bits/wchar.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf_parser.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf_parser.Plo
index 918f87a..26a804e 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf_parser.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf_parser.Plo
@@ -1,45 +1,57 @@
jsgf_parser.lo: jsgf_parser.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/hash_table.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/hash_table.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
- ../../../include/sphinxbase/glist.h \
+ ../../../include/sphinxbase/glist.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
@@ -52,36 +64,47 @@ jsgf_parser.lo: jsgf_parser.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/jsgf.h jsgf_parser.h jsgf_scanner.h \
/usr/include/inttypes.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h \
- /usr/include/stdint.h /usr/include/arm-linux-gnueabihf/bits/wchar.h
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h \
+ /usr/include/stdint.h /usr/include/arm-linux-gnueabihf/bits/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -89,19 +112,13 @@ jsgf_parser.lo: jsgf_parser.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/hash_table.h:
@@ -113,52 +130,66 @@ jsgf_parser.lo: jsgf_parser.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/glist.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
../../../include/sphinxbase/ckd_alloc.h:
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -195,8 +226,10 @@ jsgf_scanner.h:
/usr/include/inttypes.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h:
/usr/include/stdint.h:
/usr/include/arm-linux-gnueabihf/bits/wchar.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf_scanner.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf_scanner.Plo
index 8a5d364..be3e355 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf_scanner.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/jsgf_scanner.Plo
@@ -1,44 +1,60 @@
jsgf_scanner.lo: jsgf_scanner.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/inttypes.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h \
+ /usr/include/inttypes.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h \
/usr/include/stdint.h /usr/include/arm-linux-gnueabihf/bits/wchar.h \
- jsgf_internal.h ../../../include/sphinxbase/hash_table.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h jsgf_internal.h \
+ ../../../include/sphinxbase/hash_table.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/glist.h \
@@ -48,7 +64,6 @@ jsgf_scanner.lo: jsgf_scanner.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/bitvec.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/listelem_alloc.h \
../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/jsgf.h jsgf_parser.h
@@ -57,29 +72,39 @@ jsgf_scanner.lo: jsgf_scanner.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -87,19 +112,13 @@ jsgf_scanner.lo: jsgf_scanner.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/errno.h:
@@ -113,52 +132,70 @@ jsgf_scanner.lo: jsgf_scanner.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno-base.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/inttypes.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h:
/usr/include/stdint.h:
/usr/include/arm-linux-gnueabihf/bits/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h:
+
jsgf_internal.h:
../../../include/sphinxbase/hash_table.h:
@@ -185,8 +222,6 @@ jsgf_internal.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/listelem_alloc.h:
../../../include/sphinxbase/strfuncs.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/lm_trie.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/lm_trie.Plo
index bdb6b3b..643a804 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/lm_trie.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/lm_trie.Plo
@@ -1,41 +1,54 @@
lm_trie.lo: lm_trie.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/assert.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/assert.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
- ../../../include/sphinxbase/ckd_alloc.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
@@ -56,41 +69,47 @@ lm_trie.lo: lm_trie.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -98,8 +117,6 @@ lm_trie.lo: lm_trie.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/assert.h:
../../../include/sphinxbase/prim_type.h:
@@ -108,50 +125,64 @@ lm_trie.lo: lm_trie.c /usr/include/stdc-predef.h /usr/include/string.h \
../../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/err.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/lm_trie_quant.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/lm_trie_quant.Plo
index fa28889..d1adf6c 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/lm_trie_quant.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/lm_trie_quant.Plo
@@ -1,51 +1,62 @@
lm_trie_quant.lo: lm_trie_quant.c /usr/include/stdc-predef.h \
- /usr/include/math.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
@@ -55,10 +66,9 @@ lm_trie_quant.lo: lm_trie_quant.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/hash_table.h \
../../../include/sphinxbase/glist.h lm_trie_quant.h \
../../../include/sphinxbase/bitarr.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h ngrams_raw.h \
- ../../../include/sphinxbase/pio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ngrams_raw.h ../../../include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h
@@ -66,31 +76,39 @@ lm_trie_quant.lo: lm_trie_quant.c /usr/include/stdc-predef.h \
/usr/include/math.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
+/usr/include/arm-linux-gnueabihf/bits/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -104,69 +122,79 @@ lm_trie_quant.lo: lm_trie_quant.c /usr/include/stdc-predef.h \
/usr/include/stdlib.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
-/usr/include/arm-linux-gnueabihf/bits/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
-/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -174,8 +202,6 @@ lm_trie_quant.lo: lm_trie_quant.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -208,13 +234,11 @@ lm_trie_quant.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
ngrams_raw.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model.Plo
index 03dcdb8..4782a82 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model.Plo
@@ -1,46 +1,59 @@
ngram_model.lo: ngram_model.c /usr/include/stdc-predef.h \
- ../../../include/config.h /usr/include/string.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ ../../../include/config.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/ngram_model.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/cmd_ln.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../../include/sphinxbase/logmath.h ../../../include/sphinxbase/mmio.h \
- ../../../include/sphinxbase/ckd_alloc.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/filename.h ../../../include/sphinxbase/pio.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
@@ -60,33 +73,33 @@ ngram_model.lo: ngram_model.c /usr/include/stdc-predef.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
../../../include/sphinxbase/ngram_model.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
../../../include/sphinxbase/sphinxbase_export.h:
@@ -102,11 +115,17 @@ ngram_model.lo: ngram_model.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -114,58 +133,70 @@ ngram_model.lo: ngram_model.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../../include/sphinxbase/logmath.h:
../../../include/sphinxbase/mmio.h:
../../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/filename.h:
../../../include/sphinxbase/pio.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model_set.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model_set.Plo
index ed0e6cc..5ae4a03 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model_set.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model_set.Plo
@@ -1,46 +1,59 @@
ngram_model_set.lo: ngram_model_set.c /usr/include/stdc-predef.h \
- /usr/include/string.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/filename.h ngram_model_set.h \
@@ -54,81 +67,103 @@ ngram_model_set.lo: ngram_model_set.c /usr/include/stdc-predef.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
/usr/include/stdlib.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
-
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -136,8 +171,6 @@ ngram_model_set.lo: ngram_model_set.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -158,8 +191,6 @@ ngram_model_set.lo: ngram_model_set.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/prim_type.h:
../../../include/sphinx_config.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model_trie.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model_trie.Plo
index 31b4f91..b75ab20 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model_trie.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngram_model_trie.Plo
@@ -1,41 +1,55 @@
ngram_model_trie.lo: ngram_model_trie.c /usr/include/stdc-predef.h \
- /usr/include/string.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/pio.h \
@@ -45,7 +59,6 @@ ngram_model_trie.lo: ngram_model_trie.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/byteorder.h ngram_model_trie.h \
../../../include/sphinxbase/logmath.h \
../../../include/sphinxbase/cmd_ln.h ngram_model_internal.h \
@@ -59,33 +72,33 @@ ngram_model_trie.lo: ngram_model_trie.c /usr/include/stdc-predef.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
@@ -93,11 +106,17 @@ ngram_model_trie.lo: ngram_model_trie.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -105,46 +124,60 @@ ngram_model_trie.lo: ngram_model_trie.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -177,8 +210,6 @@ ngram_model_trie.lo: ngram_model_trie.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/byteorder.h:
ngram_model_trie.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngrams_raw.Plo b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngrams_raw.Plo
index 817203c..d17cd92 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngrams_raw.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/.deps/ngrams_raw.Plo
@@ -1,41 +1,54 @@
ngrams_raw.lo: ngrams_raw.c /usr/include/stdc-predef.h \
- /usr/include/string.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/err.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/pio.h \
@@ -45,7 +58,6 @@ ngrams_raw.lo: ngrams_raw.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/byteorder.h ngram_model_internal.h \
../../../include/sphinxbase/ngram_model.h \
../../../include/sphinxbase/cmd_ln.h \
@@ -57,31 +69,31 @@ ngrams_raw.lo: ngrams_raw.c /usr/include/stdc-predef.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
@@ -89,11 +101,17 @@ ngrams_raw.lo: ngrams_raw.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -101,46 +119,60 @@ ngrams_raw.lo: ngrams_raw.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -173,8 +205,6 @@ ngrams_raw.lo: ngrams_raw.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/byteorder.h:
ngram_model_internal.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile
index aa2356f..cc89c1e 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/libsphinxbase/lm/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -129,7 +129,12 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/fsg_model.Plo ./$(DEPDIR)/jsgf.Plo \
+ ./$(DEPDIR)/jsgf_parser.Plo ./$(DEPDIR)/jsgf_scanner.Plo \
+ ./$(DEPDIR)/lm_trie.Plo ./$(DEPDIR)/lm_trie_quant.Plo \
+ ./$(DEPDIR)/ngram_model.Plo ./$(DEPDIR)/ngram_model_set.Plo \
+ ./$(DEPDIR)/ngram_model_trie.Plo ./$(DEPDIR)/ngrams_raw.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -189,14 +194,14 @@ CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/ylwrap jsgf_parser.c jsgf_parser.h
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -230,7 +235,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -266,10 +271,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/lm
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/lm
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/lm
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/lm
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -301,7 +306,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -382,8 +387,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -418,16 +423,22 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/fsg_model.Plo
-include ./$(DEPDIR)/jsgf.Plo
-include ./$(DEPDIR)/jsgf_parser.Plo
-include ./$(DEPDIR)/jsgf_scanner.Plo
-include ./$(DEPDIR)/lm_trie.Plo
-include ./$(DEPDIR)/lm_trie_quant.Plo
-include ./$(DEPDIR)/ngram_model.Plo
-include ./$(DEPDIR)/ngram_model_set.Plo
-include ./$(DEPDIR)/ngram_model_trie.Plo
-include ./$(DEPDIR)/ngrams_raw.Plo
+include ./$(DEPDIR)/fsg_model.Plo # am--include-marker
+include ./$(DEPDIR)/jsgf.Plo # am--include-marker
+include ./$(DEPDIR)/jsgf_parser.Plo # am--include-marker
+include ./$(DEPDIR)/jsgf_scanner.Plo # am--include-marker
+include ./$(DEPDIR)/lm_trie.Plo # am--include-marker
+include ./$(DEPDIR)/lm_trie_quant.Plo # am--include-marker
+include ./$(DEPDIR)/ngram_model.Plo # am--include-marker
+include ./$(DEPDIR)/ngram_model_set.Plo # am--include-marker
+include ./$(DEPDIR)/ngram_model_trie.Plo # am--include-marker
+include ./$(DEPDIR)/ngrams_raw.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -511,7 +522,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -586,7 +600,16 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/fsg_model.Plo
+ -rm -f ./$(DEPDIR)/jsgf.Plo
+ -rm -f ./$(DEPDIR)/jsgf_parser.Plo
+ -rm -f ./$(DEPDIR)/jsgf_scanner.Plo
+ -rm -f ./$(DEPDIR)/lm_trie.Plo
+ -rm -f ./$(DEPDIR)/lm_trie_quant.Plo
+ -rm -f ./$(DEPDIR)/ngram_model.Plo
+ -rm -f ./$(DEPDIR)/ngram_model_set.Plo
+ -rm -f ./$(DEPDIR)/ngram_model_trie.Plo
+ -rm -f ./$(DEPDIR)/ngrams_raw.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -632,7 +655,16 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/fsg_model.Plo
+ -rm -f ./$(DEPDIR)/jsgf.Plo
+ -rm -f ./$(DEPDIR)/jsgf_parser.Plo
+ -rm -f ./$(DEPDIR)/jsgf_scanner.Plo
+ -rm -f ./$(DEPDIR)/lm_trie.Plo
+ -rm -f ./$(DEPDIR)/lm_trie_quant.Plo
+ -rm -f ./$(DEPDIR)/ngram_model.Plo
+ -rm -f ./$(DEPDIR)/ngram_model_set.Plo
+ -rm -f ./$(DEPDIR)/ngram_model_trie.Plo
+ -rm -f ./$(DEPDIR)/ngrams_raw.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -653,16 +685,16 @@ uninstall-am:
.MAKE: all check install install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-noinstLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile.in b/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile.in
index 4b74cc0..d61e66b 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile.in
+++ b/sphinxbase-5prealpha/src/libsphinxbase/lm/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -129,7 +129,12 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/fsg_model.Plo ./$(DEPDIR)/jsgf.Plo \
+ ./$(DEPDIR)/jsgf_parser.Plo ./$(DEPDIR)/jsgf_scanner.Plo \
+ ./$(DEPDIR)/lm_trie.Plo ./$(DEPDIR)/lm_trie_quant.Plo \
+ ./$(DEPDIR)/ngram_model.Plo ./$(DEPDIR)/ngram_model_set.Plo \
+ ./$(DEPDIR)/ngram_model_trie.Plo ./$(DEPDIR)/ngrams_raw.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -382,8 +387,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -418,16 +423,22 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsg_model.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jsgf.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jsgf_parser.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jsgf_scanner.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lm_trie.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lm_trie_quant.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_model.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_model_set.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_model_trie.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngrams_raw.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsg_model.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jsgf.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jsgf_parser.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jsgf_scanner.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lm_trie.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lm_trie_quant.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_model.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_model_set.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngram_model_trie.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ngrams_raw.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -511,7 +522,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -586,7 +600,16 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/fsg_model.Plo
+ -rm -f ./$(DEPDIR)/jsgf.Plo
+ -rm -f ./$(DEPDIR)/jsgf_parser.Plo
+ -rm -f ./$(DEPDIR)/jsgf_scanner.Plo
+ -rm -f ./$(DEPDIR)/lm_trie.Plo
+ -rm -f ./$(DEPDIR)/lm_trie_quant.Plo
+ -rm -f ./$(DEPDIR)/ngram_model.Plo
+ -rm -f ./$(DEPDIR)/ngram_model_set.Plo
+ -rm -f ./$(DEPDIR)/ngram_model_trie.Plo
+ -rm -f ./$(DEPDIR)/ngrams_raw.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -632,7 +655,16 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/fsg_model.Plo
+ -rm -f ./$(DEPDIR)/jsgf.Plo
+ -rm -f ./$(DEPDIR)/jsgf_parser.Plo
+ -rm -f ./$(DEPDIR)/jsgf_scanner.Plo
+ -rm -f ./$(DEPDIR)/lm_trie.Plo
+ -rm -f ./$(DEPDIR)/lm_trie_quant.Plo
+ -rm -f ./$(DEPDIR)/ngram_model.Plo
+ -rm -f ./$(DEPDIR)/ngram_model_set.Plo
+ -rm -f ./$(DEPDIR)/ngram_model_trie.Plo
+ -rm -f ./$(DEPDIR)/ngrams_raw.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -653,16 +685,16 @@ uninstall-am:
.MAKE: all check install install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-noinstLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bio.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bio.Plo
index 698667f..6fe48a3 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bio.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bio.Plo
@@ -1,76 +1,99 @@
bio.lo: bio.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/bio.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/byteorder.h \
- ../../../include/sphinxbase/err.h \
+ ../../../include/sphinxbase/err.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -78,19 +101,13 @@ bio.lo: bio.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -106,44 +123,60 @@ bio.lo: bio.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../../include/sphinxbase/err.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -161,5 +194,3 @@ bio.lo: bio.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bitarr.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bitarr.Plo
index df12246..5f7977d 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bitarr.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bitarr.Plo
@@ -1,14 +1,16 @@
bitarr.lo: bitarr.c /usr/include/stdc-predef.h ../../../include/config.h \
../../../include/sphinxbase/bitarr.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/prim_type.h \
+ ../../../include/sphinx_config.h \
../../../include/sphinxbase/sphinxbase_export.h
/usr/include/stdc-predef.h:
@@ -19,27 +21,27 @@ bitarr.lo: bitarr.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
-
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/prim_type.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bitvec.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bitvec.Plo
index 0157dd9..906a1c0 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bitvec.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/bitvec.Plo
@@ -1,37 +1,45 @@
bitvec.lo: bitvec.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/bitvec.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/sphinxbase_export.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
- ../../../include/sphinxbase/ckd_alloc.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
@@ -39,27 +47,27 @@ bitvec.lo: bitvec.c /usr/include/stdc-predef.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/sphinxbase_export.h:
@@ -69,50 +77,64 @@ bitvec.lo: bitvec.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/case.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/case.Plo
index ae085ba..44fb396 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/case.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/case.Plo
@@ -1,41 +1,56 @@
case.lo: case.c /usr/include/stdc-predef.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/assert.h \
- ../../../include/sphinxbase/case.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
+ /usr/include/assert.h ../../../include/sphinxbase/case.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/prim_type.h \
+ ../../../include/sphinx_config.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h
@@ -44,73 +59,89 @@ case.lo: case.c /usr/include/stdc-predef.h /usr/include/stdlib.h \
/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/assert.h:
../../../include/sphinxbase/case.h:
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/prim_type.h:
@@ -120,15 +151,21 @@ case.lo: case.c /usr/include/stdc-predef.h /usr/include/stdlib.h \
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -136,8 +173,6 @@ case.lo: case.c /usr/include/stdc-predef.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/ckd_alloc.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/ckd_alloc.Plo
index 6aabc7c..b1493ab 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/ckd_alloc.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/ckd_alloc.Plo
@@ -1,40 +1,54 @@
ckd_alloc.lo: ckd_alloc.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
@@ -46,29 +60,39 @@ ckd_alloc.lo: ckd_alloc.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -76,57 +100,67 @@ ckd_alloc.lo: ckd_alloc.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -136,8 +170,6 @@ ckd_alloc.lo: ckd_alloc.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/prim_type.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/cmd_ln.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/cmd_ln.Plo
index 899da28..cb28e15 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/cmd_ln.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/cmd_ln.Plo
@@ -1,42 +1,57 @@
cmd_ln.lo: cmd_ln.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- ../../../include/config.h /usr/include/unistd.h \
- /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h ../../../include/config.h \
+ /usr/include/unistd.h /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
/usr/include/arm-linux-gnueabihf/bits/environments.h \
- /usr/include/arm-linux-gnueabihf/bits/confname.h /usr/include/getopt.h \
- /usr/include/arm-linux-gnueabihf/bits/unistd.h \
+ /usr/include/arm-linux-gnueabihf/bits/confname.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_posix.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_core.h \
../../../include/sphinxbase/cmd_ln.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
@@ -46,7 +61,6 @@ cmd_ln.lo: cmd_ln.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/hash_table.h \
../../../include/sphinxbase/glist.h ../../../include/sphinxbase/case.h \
../../../include/sphinxbase/strfuncs.h
@@ -55,29 +69,39 @@ cmd_ln.lo: cmd_ln.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -85,57 +109,67 @@ cmd_ln.lo: cmd_ln.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -149,9 +183,9 @@ cmd_ln.lo: cmd_ln.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/confname.h:
-/usr/include/getopt.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_posix.h:
-/usr/include/arm-linux-gnueabihf/bits/unistd.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_core.h:
../../../include/sphinxbase/cmd_ln.h:
@@ -181,8 +215,6 @@ cmd_ln.lo: cmd_ln.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/hash_table.h:
../../../include/sphinxbase/glist.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/dtoa.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/dtoa.Plo
index 9274c47..f4fec5e 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/dtoa.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/dtoa.Plo
@@ -2,44 +2,57 @@ dtoa.lo: dtoa.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/errno.h /usr/include/features.h \
/usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/string.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /usr/include/stdio.h /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- ../../../include/sphinxbase/ckd_alloc.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h
@@ -55,6 +68,8 @@ dtoa.lo: dtoa.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
@@ -71,33 +86,37 @@ dtoa.lo: dtoa.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/string.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
-
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -105,54 +124,66 @@ dtoa.lo: dtoa.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/prim_type.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/err.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/err.Plo
index 0ed5a1a..002cb6d 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/err.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/err.Plo
@@ -1,38 +1,53 @@
err.lo: err.c /usr/include/stdc-predef.h ../../../include/config.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/errno.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
@@ -41,8 +56,7 @@ err.lo: err.c /usr/include/stdc-predef.h ../../../include/config.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/filename.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
@@ -50,29 +64,39 @@ err.lo: err.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -80,57 +104,67 @@ err.lo: err.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/errno.h:
@@ -159,5 +193,3 @@ err.lo: err.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/filename.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/filename.Plo
index 4788544..df2832f 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/filename.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/filename.Plo
@@ -1,37 +1,52 @@
filename.lo: filename.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/filename.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h
@@ -40,29 +55,39 @@ filename.lo: filename.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -70,57 +95,67 @@ filename.lo: filename.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/genrand.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/genrand.Plo
index 4559a83..6de9eda 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/genrand.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/genrand.Plo
@@ -1,17 +1,23 @@
genrand.lo: genrand.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../../include/sphinxbase/genrand.h \
../../../include/sphinxbase/sphinxbase_export.h
@@ -19,29 +25,39 @@ genrand.lo: genrand.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -49,8 +65,6 @@ genrand.lo: genrand.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../../include/sphinxbase/genrand.h:
../../../include/sphinxbase/sphinxbase_export.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/glist.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/glist.Plo
index 456531f..2e9358c 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/glist.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/glist.Plo
@@ -1,71 +1,95 @@
glist.lo: glist.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/glist.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -73,57 +97,67 @@ glist.lo: glist.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -140,5 +174,3 @@ glist.lo: glist.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/hash_table.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/hash_table.Plo
index 786c619..cfe045f 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/hash_table.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/hash_table.Plo
@@ -1,38 +1,53 @@
hash_table.lo: hash_table.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/hash_table.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
@@ -42,36 +57,45 @@ hash_table.lo: hash_table.c /usr/include/stdc-predef.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/case.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -79,57 +103,67 @@ hash_table.lo: hash_table.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -163,6 +197,4 @@ hash_table.lo: hash_table.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/case.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/heap.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/heap.Plo
index ab71f7a..7d2ba3a 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/heap.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/heap.Plo
@@ -1,37 +1,52 @@
heap.lo: heap.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/heap.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
@@ -40,36 +55,45 @@ heap.lo: heap.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -77,57 +101,67 @@ heap.lo: heap.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -158,5 +192,3 @@ heap.lo: heap.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/listelem_alloc.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/listelem_alloc.Plo
index c061bae..01ad753 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/listelem_alloc.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/listelem_alloc.Plo
@@ -1,35 +1,49 @@
listelem_alloc.lo: listelem_alloc.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
@@ -37,7 +51,6 @@ listelem_alloc.lo: listelem_alloc.c /usr/include/stdc-predef.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/listelem_alloc.h \
../../../include/sphinxbase/glist.h
@@ -46,29 +59,39 @@ listelem_alloc.lo: listelem_alloc.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -76,48 +99,60 @@ listelem_alloc.lo: listelem_alloc.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
../../../include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -140,8 +175,6 @@ listelem_alloc.lo: listelem_alloc.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/prim_type.h:
../../../include/sphinx_config.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/logmath.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/logmath.Plo
index c92452e..b6d48cf 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/logmath.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/logmath.Plo
@@ -1,58 +1,69 @@
logmath.lo: logmath.c /usr/include/stdc-predef.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
+ /usr/include/arm-linux-gnueabihf/bits/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h /usr/include/string.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/logmath.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/cmd_ln.h /usr/include/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
- ../../../include/sphinxbase/err.h \
+ ../../../include/sphinxbase/err.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/errno.h \
- /usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/arm-linux-gnueabihf/asm/errno.h \
+ /usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
+ /usr/include/linux/errno.h /usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/mmio.h ../../../include/sphinxbase/bio.h \
../../../include/sphinxbase/byteorder.h \
../../../include/sphinxbase/strfuncs.h
@@ -61,31 +72,39 @@ logmath.lo: logmath.c /usr/include/stdc-predef.h /usr/include/math.h \
/usr/include/math.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
+/usr/include/arm-linux-gnueabihf/bits/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -93,17 +112,13 @@ logmath.lo: logmath.c /usr/include/stdc-predef.h /usr/include/math.h \
/usr/include/string.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -119,17 +134,19 @@ logmath.lo: logmath.c /usr/include/stdc-predef.h /usr/include/math.h \
/usr/include/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/types.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
-/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -137,48 +154,58 @@ logmath.lo: logmath.c /usr/include/stdc-predef.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../../include/sphinxbase/err.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -197,8 +224,6 @@ logmath.lo: logmath.c /usr/include/stdc-predef.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/mmio.h:
../../../include/sphinxbase/bio.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/matrix.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/matrix.Plo
index 2b57409..c3cf8f9 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/matrix.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/matrix.Plo
@@ -1,117 +1,146 @@
matrix.lo: matrix.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h ../../../include/config.h \
- ../../../include/sphinxbase/clapack_lite.h \
+ ../../../include/config.h ../../../include/sphinxbase/clapack_lite.h \
../../../include/sphinxbase/f2c.h ../../../include/sphinxbase/matrix.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
/usr/include/stdlib.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
-
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
../../../include/config.h:
../../../include/sphinxbase/clapack_lite.h:
@@ -128,15 +157,21 @@ matrix.lo: matrix.c /usr/include/stdc-predef.h /usr/include/string.h \
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -144,8 +179,6 @@ matrix.lo: matrix.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -163,5 +196,3 @@ matrix.lo: matrix.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/mmio.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/mmio.Plo
index c9c09ec..310b11b 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/mmio.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/mmio.Plo
@@ -1,129 +1,159 @@
mmio.lo: mmio.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/unistd.h \
- /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
+ /usr/include/unistd.h /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
/usr/include/arm-linux-gnueabihf/bits/environments.h \
- /usr/include/arm-linux-gnueabihf/bits/confname.h /usr/include/getopt.h \
- /usr/include/arm-linux-gnueabihf/bits/unistd.h /usr/include/fcntl.h \
+ /usr/include/arm-linux-gnueabihf/bits/confname.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_posix.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_core.h /usr/include/fcntl.h \
/usr/include/arm-linux-gnueabihf/bits/fcntl.h \
/usr/include/arm-linux-gnueabihf/bits/fcntl-linux.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
- /usr/include/arm-linux-gnueabihf/bits/fcntl2.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/sys/file.h \
/usr/include/arm-linux-gnueabihf/sys/mman.h \
/usr/include/arm-linux-gnueabihf/bits/mman.h \
/usr/include/arm-linux-gnueabihf/bits/mman-linux.h \
+ /usr/include/arm-linux-gnueabihf/bits/mman-shared.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/mmio.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/strings.h:
/usr/include/stdlib.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
-
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/unistd.h:
/usr/include/arm-linux-gnueabihf/bits/posix_opt.h:
@@ -132,9 +162,9 @@ mmio.lo: mmio.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/confname.h:
-/usr/include/getopt.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_posix.h:
-/usr/include/arm-linux-gnueabihf/bits/unistd.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_core.h:
/usr/include/fcntl.h:
@@ -144,8 +174,6 @@ mmio.lo: mmio.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h:
-/usr/include/arm-linux-gnueabihf/bits/fcntl2.h:
-
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/sys/file.h:
@@ -156,21 +184,29 @@ mmio.lo: mmio.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/mman-linux.h:
+/usr/include/arm-linux-gnueabihf/bits/mman-shared.h:
+
../../../include/sphinxbase/prim_type.h:
../../../include/sphinx_config.h:
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -178,8 +214,6 @@ mmio.lo: mmio.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
@@ -201,5 +235,3 @@ mmio.lo: mmio.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/pio.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/pio.Plo
index 3f6dfcd..a8e7db7 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/pio.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/pio.Plo
@@ -1,42 +1,58 @@
pio.lo: pio.c /usr/include/stdc-predef.h ../../../include/config.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /usr/include/unistd.h /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h /usr/include/unistd.h \
+ /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
/usr/include/arm-linux-gnueabihf/bits/environments.h \
- /usr/include/arm-linux-gnueabihf/bits/confname.h /usr/include/getopt.h \
- /usr/include/arm-linux-gnueabihf/bits/unistd.h \
+ /usr/include/arm-linux-gnueabihf/bits/confname.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_posix.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_core.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
../../../include/sphinxbase/pio.h \
@@ -48,8 +64,7 @@ pio.lo: pio.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/strfuncs.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
@@ -57,29 +72,39 @@ pio.lo: pio.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -87,57 +112,67 @@ pio.lo: pio.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -149,9 +184,9 @@ pio.lo: pio.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/arm-linux-gnueabihf/bits/confname.h:
-/usr/include/getopt.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_posix.h:
-/usr/include/arm-linux-gnueabihf/bits/unistd.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_core.h:
/usr/include/arm-linux-gnueabihf/sys/stat.h:
@@ -188,5 +223,3 @@ pio.lo: pio.c /usr/include/stdc-predef.h ../../../include/config.h \
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/priority_queue.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/priority_queue.Plo
index 3c849df..3ffb94d 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/priority_queue.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/priority_queue.Plo
@@ -1,42 +1,55 @@
priority_queue.lo: priority_queue.c /usr/include/stdc-predef.h \
../../../include/config.h ../../../include/sphinxbase/priority_queue.h \
- /usr/include/stdlib.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/err.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h
@@ -49,60 +62,78 @@ priority_queue.lo: priority_queue.c /usr/include/stdc-predef.h \
/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/ckd_alloc.h:
@@ -111,23 +142,27 @@ priority_queue.lo: priority_queue.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/prim_type.h:
../../../include/sphinx_config.h:
../../../include/sphinxbase/err.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -135,8 +170,6 @@ priority_queue.lo: priority_queue.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/errno.h:
/usr/include/arm-linux-gnueabihf/bits/errno.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/profile.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/profile.Plo
index a9e435d..06ec54a 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/profile.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/profile.Plo
@@ -1,45 +1,62 @@
profile.lo: profile.c /usr/include/stdc-predef.h \
- ../../../include/config.h /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ ../../../include/config.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/unistd.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/unistd.h \
/usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
/usr/include/arm-linux-gnueabihf/bits/environments.h \
- /usr/include/arm-linux-gnueabihf/bits/confname.h /usr/include/getopt.h \
- /usr/include/arm-linux-gnueabihf/bits/unistd.h \
+ /usr/include/arm-linux-gnueabihf/bits/confname.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_posix.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_core.h \
/usr/include/arm-linux-gnueabihf/sys/time.h \
/usr/include/arm-linux-gnueabihf/sys/resource.h \
/usr/include/arm-linux-gnueabihf/bits/resource.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_rusage.h \
../../../include/sphinxbase/profile.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
@@ -48,8 +65,7 @@ profile.lo: profile.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h
/usr/include/stdc-predef.h:
@@ -57,29 +73,39 @@ profile.lo: profile.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -87,57 +113,67 @@ profile.lo: profile.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/unistd.h:
@@ -147,9 +183,9 @@ profile.lo: profile.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/confname.h:
-/usr/include/getopt.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_posix.h:
-/usr/include/arm-linux-gnueabihf/bits/unistd.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_core.h:
/usr/include/arm-linux-gnueabihf/sys/time.h:
@@ -157,6 +193,8 @@ profile.lo: profile.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/resource.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_rusage.h:
+
../../../include/sphinxbase/profile.h:
../../../include/sphinxbase/sphinxbase_export.h:
@@ -184,5 +222,3 @@ profile.lo: profile.c /usr/include/stdc-predef.h \
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/sbthread.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/sbthread.Plo
index 5c350b5..ed0d490 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/sbthread.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/sbthread.Plo
@@ -1,77 +1,95 @@
sbthread.lo: sbthread.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../../include/sphinxbase/sbthread.h ../../../include/sphinx_config.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../../include/sphinxbase/sbthread.h \
+ ../../../include/sphinx_config.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/cmd_ln.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../../include/sphinxbase/prim_type.h \
- ../../../include/sphinxbase/ckd_alloc.h \
+ ../../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
/usr/include/pthread.h /usr/include/sched.h \
/usr/include/arm-linux-gnueabihf/bits/sched.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_sched_param.h \
+ /usr/include/arm-linux-gnueabihf/bits/cpu-set.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_tm.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_itimerspec.h \
/usr/include/arm-linux-gnueabihf/sys/time.h
/usr/include/stdc-predef.h:
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
-
-/usr/include/xlocale.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../../include/sphinxbase/sbthread.h:
@@ -83,17 +101,23 @@ sbthread.lo: sbthread.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/stdio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -101,56 +125,68 @@ sbthread.lo: sbthread.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../../include/sphinxbase/prim_type.h:
../../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -171,4 +207,16 @@ sbthread.lo: sbthread.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/sched.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_sched_param.h:
+
+/usr/include/arm-linux-gnueabihf/bits/cpu-set.h:
+
+/usr/include/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_tm.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_itimerspec.h:
+
/usr/include/arm-linux-gnueabihf/sys/time.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/strfuncs.Plo b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/strfuncs.Plo
index 95db34c..2d6d7fe 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/strfuncs.Plo
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/.deps/strfuncs.Plo
@@ -1,40 +1,54 @@
strfuncs.lo: strfuncs.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h \
../../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../../include/sphinxbase/sphinxbase_export.h \
../../../include/sphinxbase/prim_type.h ../../../include/sphinx_config.h \
../../../include/sphinxbase/strfuncs.h
@@ -43,29 +57,39 @@ strfuncs.lo: strfuncs.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -73,57 +97,67 @@ strfuncs.lo: strfuncs.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -133,8 +167,6 @@ strfuncs.lo: strfuncs.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../../include/sphinxbase/sphinxbase_export.h:
../../../include/sphinxbase/prim_type.h:
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile b/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile
index c050624..38f10e8 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/libsphinxbase/util/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,20 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/bio.Plo ./$(DEPDIR)/bitarr.Plo \
+ ./$(DEPDIR)/bitvec.Plo ./$(DEPDIR)/blas_lite.Plo \
+ ./$(DEPDIR)/case.Plo ./$(DEPDIR)/ckd_alloc.Plo \
+ ./$(DEPDIR)/cmd_ln.Plo ./$(DEPDIR)/dtoa.Plo \
+ ./$(DEPDIR)/err.Plo ./$(DEPDIR)/f2c_lite.Plo \
+ ./$(DEPDIR)/filename.Plo ./$(DEPDIR)/genrand.Plo \
+ ./$(DEPDIR)/glist.Plo ./$(DEPDIR)/hash_table.Plo \
+ ./$(DEPDIR)/heap.Plo ./$(DEPDIR)/listelem_alloc.Plo \
+ ./$(DEPDIR)/logmath.Plo ./$(DEPDIR)/matrix.Plo \
+ ./$(DEPDIR)/mmio.Plo ./$(DEPDIR)/pio.Plo \
+ ./$(DEPDIR)/priority_queue.Plo ./$(DEPDIR)/profile.Plo \
+ ./$(DEPDIR)/sbthread.Plo ./$(DEPDIR)/slamch.Plo \
+ ./$(DEPDIR)/slapack_lite.Plo ./$(DEPDIR)/strfuncs.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -184,14 +197,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -225,7 +238,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -261,10 +274,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/util
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/libsphinxbase/util
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/util
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/util
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +309,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -384,8 +397,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -417,32 +430,38 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/bio.Plo
-include ./$(DEPDIR)/bitarr.Plo
-include ./$(DEPDIR)/bitvec.Plo
-include ./$(DEPDIR)/blas_lite.Plo
-include ./$(DEPDIR)/case.Plo
-include ./$(DEPDIR)/ckd_alloc.Plo
-include ./$(DEPDIR)/cmd_ln.Plo
-include ./$(DEPDIR)/dtoa.Plo
-include ./$(DEPDIR)/err.Plo
-include ./$(DEPDIR)/f2c_lite.Plo
-include ./$(DEPDIR)/filename.Plo
-include ./$(DEPDIR)/genrand.Plo
-include ./$(DEPDIR)/glist.Plo
-include ./$(DEPDIR)/hash_table.Plo
-include ./$(DEPDIR)/heap.Plo
-include ./$(DEPDIR)/listelem_alloc.Plo
-include ./$(DEPDIR)/logmath.Plo
-include ./$(DEPDIR)/matrix.Plo
-include ./$(DEPDIR)/mmio.Plo
-include ./$(DEPDIR)/pio.Plo
-include ./$(DEPDIR)/priority_queue.Plo
-include ./$(DEPDIR)/profile.Plo
-include ./$(DEPDIR)/sbthread.Plo
-include ./$(DEPDIR)/slamch.Plo
-include ./$(DEPDIR)/slapack_lite.Plo
-include ./$(DEPDIR)/strfuncs.Plo
+include ./$(DEPDIR)/bio.Plo # am--include-marker
+include ./$(DEPDIR)/bitarr.Plo # am--include-marker
+include ./$(DEPDIR)/bitvec.Plo # am--include-marker
+include ./$(DEPDIR)/blas_lite.Plo # am--include-marker
+include ./$(DEPDIR)/case.Plo # am--include-marker
+include ./$(DEPDIR)/ckd_alloc.Plo # am--include-marker
+include ./$(DEPDIR)/cmd_ln.Plo # am--include-marker
+include ./$(DEPDIR)/dtoa.Plo # am--include-marker
+include ./$(DEPDIR)/err.Plo # am--include-marker
+include ./$(DEPDIR)/f2c_lite.Plo # am--include-marker
+include ./$(DEPDIR)/filename.Plo # am--include-marker
+include ./$(DEPDIR)/genrand.Plo # am--include-marker
+include ./$(DEPDIR)/glist.Plo # am--include-marker
+include ./$(DEPDIR)/hash_table.Plo # am--include-marker
+include ./$(DEPDIR)/heap.Plo # am--include-marker
+include ./$(DEPDIR)/listelem_alloc.Plo # am--include-marker
+include ./$(DEPDIR)/logmath.Plo # am--include-marker
+include ./$(DEPDIR)/matrix.Plo # am--include-marker
+include ./$(DEPDIR)/mmio.Plo # am--include-marker
+include ./$(DEPDIR)/pio.Plo # am--include-marker
+include ./$(DEPDIR)/priority_queue.Plo # am--include-marker
+include ./$(DEPDIR)/profile.Plo # am--include-marker
+include ./$(DEPDIR)/sbthread.Plo # am--include-marker
+include ./$(DEPDIR)/slamch.Plo # am--include-marker
+include ./$(DEPDIR)/slapack_lite.Plo # am--include-marker
+include ./$(DEPDIR)/strfuncs.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -523,7 +542,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -593,7 +615,32 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/bio.Plo
+ -rm -f ./$(DEPDIR)/bitarr.Plo
+ -rm -f ./$(DEPDIR)/bitvec.Plo
+ -rm -f ./$(DEPDIR)/blas_lite.Plo
+ -rm -f ./$(DEPDIR)/case.Plo
+ -rm -f ./$(DEPDIR)/ckd_alloc.Plo
+ -rm -f ./$(DEPDIR)/cmd_ln.Plo
+ -rm -f ./$(DEPDIR)/dtoa.Plo
+ -rm -f ./$(DEPDIR)/err.Plo
+ -rm -f ./$(DEPDIR)/f2c_lite.Plo
+ -rm -f ./$(DEPDIR)/filename.Plo
+ -rm -f ./$(DEPDIR)/genrand.Plo
+ -rm -f ./$(DEPDIR)/glist.Plo
+ -rm -f ./$(DEPDIR)/hash_table.Plo
+ -rm -f ./$(DEPDIR)/heap.Plo
+ -rm -f ./$(DEPDIR)/listelem_alloc.Plo
+ -rm -f ./$(DEPDIR)/logmath.Plo
+ -rm -f ./$(DEPDIR)/matrix.Plo
+ -rm -f ./$(DEPDIR)/mmio.Plo
+ -rm -f ./$(DEPDIR)/pio.Plo
+ -rm -f ./$(DEPDIR)/priority_queue.Plo
+ -rm -f ./$(DEPDIR)/profile.Plo
+ -rm -f ./$(DEPDIR)/sbthread.Plo
+ -rm -f ./$(DEPDIR)/slamch.Plo
+ -rm -f ./$(DEPDIR)/slapack_lite.Plo
+ -rm -f ./$(DEPDIR)/strfuncs.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -639,7 +686,32 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/bio.Plo
+ -rm -f ./$(DEPDIR)/bitarr.Plo
+ -rm -f ./$(DEPDIR)/bitvec.Plo
+ -rm -f ./$(DEPDIR)/blas_lite.Plo
+ -rm -f ./$(DEPDIR)/case.Plo
+ -rm -f ./$(DEPDIR)/ckd_alloc.Plo
+ -rm -f ./$(DEPDIR)/cmd_ln.Plo
+ -rm -f ./$(DEPDIR)/dtoa.Plo
+ -rm -f ./$(DEPDIR)/err.Plo
+ -rm -f ./$(DEPDIR)/f2c_lite.Plo
+ -rm -f ./$(DEPDIR)/filename.Plo
+ -rm -f ./$(DEPDIR)/genrand.Plo
+ -rm -f ./$(DEPDIR)/glist.Plo
+ -rm -f ./$(DEPDIR)/hash_table.Plo
+ -rm -f ./$(DEPDIR)/heap.Plo
+ -rm -f ./$(DEPDIR)/listelem_alloc.Plo
+ -rm -f ./$(DEPDIR)/logmath.Plo
+ -rm -f ./$(DEPDIR)/matrix.Plo
+ -rm -f ./$(DEPDIR)/mmio.Plo
+ -rm -f ./$(DEPDIR)/pio.Plo
+ -rm -f ./$(DEPDIR)/priority_queue.Plo
+ -rm -f ./$(DEPDIR)/profile.Plo
+ -rm -f ./$(DEPDIR)/sbthread.Plo
+ -rm -f ./$(DEPDIR)/slamch.Plo
+ -rm -f ./$(DEPDIR)/slapack_lite.Plo
+ -rm -f ./$(DEPDIR)/strfuncs.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -660,16 +732,16 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-noinstLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile.in b/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile.in
index 87424ed..6c307cf 100644
--- a/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile.in
+++ b/sphinxbase-5prealpha/src/libsphinxbase/util/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,20 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/bio.Plo ./$(DEPDIR)/bitarr.Plo \
+ ./$(DEPDIR)/bitvec.Plo ./$(DEPDIR)/blas_lite.Plo \
+ ./$(DEPDIR)/case.Plo ./$(DEPDIR)/ckd_alloc.Plo \
+ ./$(DEPDIR)/cmd_ln.Plo ./$(DEPDIR)/dtoa.Plo \
+ ./$(DEPDIR)/err.Plo ./$(DEPDIR)/f2c_lite.Plo \
+ ./$(DEPDIR)/filename.Plo ./$(DEPDIR)/genrand.Plo \
+ ./$(DEPDIR)/glist.Plo ./$(DEPDIR)/hash_table.Plo \
+ ./$(DEPDIR)/heap.Plo ./$(DEPDIR)/listelem_alloc.Plo \
+ ./$(DEPDIR)/logmath.Plo ./$(DEPDIR)/matrix.Plo \
+ ./$(DEPDIR)/mmio.Plo ./$(DEPDIR)/pio.Plo \
+ ./$(DEPDIR)/priority_queue.Plo ./$(DEPDIR)/profile.Plo \
+ ./$(DEPDIR)/sbthread.Plo ./$(DEPDIR)/slamch.Plo \
+ ./$(DEPDIR)/slapack_lite.Plo ./$(DEPDIR)/strfuncs.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -384,8 +397,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -417,32 +430,38 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bio.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitarr.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitvec.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blas_lite.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/case.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ckd_alloc.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmd_ln.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dtoa.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/err.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/f2c_lite.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filename.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/genrand.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glist.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hash_table.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/heap.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/listelem_alloc.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/logmath.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/matrix.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mmio.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pio.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/priority_queue.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/profile.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sbthread.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/slamch.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/slapack_lite.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strfuncs.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bio.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitarr.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitvec.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blas_lite.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/case.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ckd_alloc.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmd_ln.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dtoa.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/err.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/f2c_lite.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filename.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/genrand.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glist.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hash_table.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/heap.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/listelem_alloc.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/logmath.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/matrix.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mmio.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pio.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/priority_queue.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/profile.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sbthread.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/slamch.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/slapack_lite.Plo@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strfuncs.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -523,7 +542,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -593,7 +615,32 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/bio.Plo
+ -rm -f ./$(DEPDIR)/bitarr.Plo
+ -rm -f ./$(DEPDIR)/bitvec.Plo
+ -rm -f ./$(DEPDIR)/blas_lite.Plo
+ -rm -f ./$(DEPDIR)/case.Plo
+ -rm -f ./$(DEPDIR)/ckd_alloc.Plo
+ -rm -f ./$(DEPDIR)/cmd_ln.Plo
+ -rm -f ./$(DEPDIR)/dtoa.Plo
+ -rm -f ./$(DEPDIR)/err.Plo
+ -rm -f ./$(DEPDIR)/f2c_lite.Plo
+ -rm -f ./$(DEPDIR)/filename.Plo
+ -rm -f ./$(DEPDIR)/genrand.Plo
+ -rm -f ./$(DEPDIR)/glist.Plo
+ -rm -f ./$(DEPDIR)/hash_table.Plo
+ -rm -f ./$(DEPDIR)/heap.Plo
+ -rm -f ./$(DEPDIR)/listelem_alloc.Plo
+ -rm -f ./$(DEPDIR)/logmath.Plo
+ -rm -f ./$(DEPDIR)/matrix.Plo
+ -rm -f ./$(DEPDIR)/mmio.Plo
+ -rm -f ./$(DEPDIR)/pio.Plo
+ -rm -f ./$(DEPDIR)/priority_queue.Plo
+ -rm -f ./$(DEPDIR)/profile.Plo
+ -rm -f ./$(DEPDIR)/sbthread.Plo
+ -rm -f ./$(DEPDIR)/slamch.Plo
+ -rm -f ./$(DEPDIR)/slapack_lite.Plo
+ -rm -f ./$(DEPDIR)/strfuncs.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -639,7 +686,32 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/bio.Plo
+ -rm -f ./$(DEPDIR)/bitarr.Plo
+ -rm -f ./$(DEPDIR)/bitvec.Plo
+ -rm -f ./$(DEPDIR)/blas_lite.Plo
+ -rm -f ./$(DEPDIR)/case.Plo
+ -rm -f ./$(DEPDIR)/ckd_alloc.Plo
+ -rm -f ./$(DEPDIR)/cmd_ln.Plo
+ -rm -f ./$(DEPDIR)/dtoa.Plo
+ -rm -f ./$(DEPDIR)/err.Plo
+ -rm -f ./$(DEPDIR)/f2c_lite.Plo
+ -rm -f ./$(DEPDIR)/filename.Plo
+ -rm -f ./$(DEPDIR)/genrand.Plo
+ -rm -f ./$(DEPDIR)/glist.Plo
+ -rm -f ./$(DEPDIR)/hash_table.Plo
+ -rm -f ./$(DEPDIR)/heap.Plo
+ -rm -f ./$(DEPDIR)/listelem_alloc.Plo
+ -rm -f ./$(DEPDIR)/logmath.Plo
+ -rm -f ./$(DEPDIR)/matrix.Plo
+ -rm -f ./$(DEPDIR)/mmio.Plo
+ -rm -f ./$(DEPDIR)/pio.Plo
+ -rm -f ./$(DEPDIR)/priority_queue.Plo
+ -rm -f ./$(DEPDIR)/profile.Plo
+ -rm -f ./$(DEPDIR)/sbthread.Plo
+ -rm -f ./$(DEPDIR)/slamch.Plo
+ -rm -f ./$(DEPDIR)/slapack_lite.Plo
+ -rm -f ./$(DEPDIR)/strfuncs.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -660,16 +732,16 @@ uninstall-am:
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-noinstLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/.deps/cont_seg.Po b/sphinxbase-5prealpha/src/sphinx_adtools/.deps/cont_seg.Po
index 674fad5..4979486 100644
--- a/sphinxbase-5prealpha/src/sphinx_adtools/.deps/cont_seg.Po
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/.deps/cont_seg.Po
@@ -1,45 +1,58 @@
cont_seg.o: cont_seg.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- /usr/include/math.h /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/assert.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
../../include/sphinxbase/prim_type.h ../../include/sphinx_config.h \
@@ -47,15 +60,14 @@ cont_seg.o: cont_seg.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/fe.h ../../include/sphinxbase/cmd_ln.h \
../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
@@ -65,29 +77,39 @@ cont_seg.o: cont_seg.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -95,57 +117,67 @@ cont_seg.o: cont_seg.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/assert.h:
@@ -155,17 +187,13 @@ cont_seg.o: cont_seg.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
-
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
@@ -185,9 +213,9 @@ cont_seg.o: cont_seg.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -205,8 +233,6 @@ cont_seg.o: cont_seg.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/sphinxbase/err.h:
/usr/include/errno.h:
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/.deps/sphinx_pitch.Po b/sphinxbase-5prealpha/src/sphinx_adtools/.deps/sphinx_pitch.Po
index 2a6252c..fbf5ad2 100644
--- a/sphinxbase-5prealpha/src/sphinx_adtools/.deps/sphinx_pitch.Po
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/.deps/sphinx_pitch.Po
@@ -1,44 +1,56 @@
sphinx_pitch.o: sphinx_pitch.c /usr/include/stdc-predef.h \
- ../../include/config.h /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ ../../include/config.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../include/sphinxbase/cmd_ln.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../include/sphinxbase/cmd_ln.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/prim_type.h ../../include/sphinx_config.h \
../../include/sphinxbase/yin.h ../../include/sphinxbase/ckd_alloc.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../include/sphinxbase/byteorder.h ../../include/sphinxbase/strfuncs.h \
../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
@@ -54,29 +66,39 @@ sphinx_pitch.o: sphinx_pitch.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -84,19 +106,13 @@ sphinx_pitch.o: sphinx_pitch.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../include/sphinxbase/cmd_ln.h:
@@ -110,50 +126,64 @@ sphinx_pitch.o: sphinx_pitch.c /usr/include/stdc-predef.h \
../../include/sphinxbase/ckd_alloc.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/sphinxbase/byteorder.h:
../../include/sphinxbase/strfuncs.h:
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_cont_seg b/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_cont_seg
new file mode 100755
index 0000000..2b42f22
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_cont_seg differ
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_pitch b/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_pitch
new file mode 100755
index 0000000..0cc5e01
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_adtools/.libs/sphinx_pitch differ
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/Makefile b/sphinxbase-5prealpha/src/sphinx_adtools/Makefile
index 2451cef..0da0138 100644
--- a/sphinxbase-5prealpha/src/sphinx_adtools/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/sphinx_adtools/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/cont_seg.Po \
+ ./$(DEPDIR)/sphinx_pitch.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -184,14 +186,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -225,7 +227,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -261,10 +263,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_adtools
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_adtools
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_adtools
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_adtools
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +298,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -347,8 +349,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -423,8 +425,14 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/cont_seg.Po
-include ./$(DEPDIR)/sphinx_pitch.Po
+include ./$(DEPDIR)/cont_seg.Po # am--include-marker
+include ./$(DEPDIR)/sphinx_pitch.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -505,7 +513,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -577,7 +588,8 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/cont_seg.Po
+ -rm -f ./$(DEPDIR)/sphinx_pitch.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -623,7 +635,8 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/cont_seg.Po
+ -rm -f ./$(DEPDIR)/sphinx_pitch.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -644,7 +657,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/Makefile.in b/sphinxbase-5prealpha/src/sphinx_adtools/Makefile.in
index 7500ef3..b9ee821 100644
--- a/sphinxbase-5prealpha/src/sphinx_adtools/Makefile.in
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/cont_seg.Po \
+ ./$(DEPDIR)/sphinx_pitch.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -347,8 +349,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -423,8 +425,14 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cont_seg.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sphinx_pitch.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cont_seg.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sphinx_pitch.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -505,7 +513,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -577,7 +588,8 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/cont_seg.Po
+ -rm -f ./$(DEPDIR)/sphinx_pitch.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -623,7 +635,8 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/cont_seg.Po
+ -rm -f ./$(DEPDIR)/sphinx_pitch.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -644,7 +657,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_cont_seg b/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_cont_seg
new file mode 100755
index 0000000..350bbd9
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_cont_seg
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# sphinx_cont_seg - temporary wrapper script for .libs/sphinx_cont_seg
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The sphinx_cont_seg program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la ../../src/libsphinxad/libsphinxad.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_cont_seg:sphinx_cont_seg:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_cont_seg:sphinx_cont_seg:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_cont_seg:sphinx_cont_seg:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='sphinx_cont_seg'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs:/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxad/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_pitch b/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_pitch
new file mode 100755
index 0000000..b0b001a
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_adtools/sphinx_pitch
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# sphinx_pitch - temporary wrapper script for .libs/sphinx_pitch
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The sphinx_pitch program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la ../../src/libsphinxad/libsphinxad.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_pitch:sphinx_pitch:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_pitch:sphinx_pitch:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_pitch:sphinx_pitch:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='sphinx_pitch'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs:/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxad/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_cepview/.deps/main_cepview.Po b/sphinxbase-5prealpha/src/sphinx_cepview/.deps/main_cepview.Po
index f7657aa..a285a5c 100644
--- a/sphinxbase-5prealpha/src/sphinx_cepview/.deps/main_cepview.Po
+++ b/sphinxbase-5prealpha/src/sphinx_cepview/.deps/main_cepview.Po
@@ -1,44 +1,58 @@
main_cepview.o: main_cepview.c /usr/include/stdc-predef.h \
- /usr/include/stdio.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h ../../include/config.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../include/config.h \
../../include/sphinxbase/strfuncs.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/prim_type.h ../../include/sphinx_config.h \
../../include/sphinxbase/cmd_ln.h ../../include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
@@ -52,29 +66,39 @@ main_cepview.o: main_cepview.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -82,57 +106,67 @@ main_cepview.o: main_cepview.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../include/config.h:
@@ -152,8 +186,6 @@ main_cepview.o: main_cepview.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/sphinxbase/err.h:
/usr/include/errno.h:
diff --git a/sphinxbase-5prealpha/src/sphinx_cepview/.libs/sphinx_cepview b/sphinxbase-5prealpha/src/sphinx_cepview/.libs/sphinx_cepview
new file mode 100755
index 0000000..4e937a2
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_cepview/.libs/sphinx_cepview differ
diff --git a/sphinxbase-5prealpha/src/sphinx_cepview/Makefile b/sphinxbase-5prealpha/src/sphinx_cepview/Makefile
index ea880db..766a55a 100644
--- a/sphinxbase-5prealpha/src/sphinx_cepview/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_cepview/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/sphinx_cepview/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -128,7 +128,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/main_cepview.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -176,14 +177,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -217,7 +218,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -253,10 +254,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_cepview
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_cepview
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_cepview
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_cepview
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -288,7 +289,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -339,8 +340,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -411,7 +412,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/main_cepview.Po
+include ./$(DEPDIR)/main_cepview.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -492,7 +499,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -564,7 +574,7 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/main_cepview.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -610,7 +620,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/main_cepview.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -631,7 +641,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_cepview/Makefile.in b/sphinxbase-5prealpha/src/sphinx_cepview/Makefile.in
index eddef34..cdfc754 100644
--- a/sphinxbase-5prealpha/src/sphinx_cepview/Makefile.in
+++ b/sphinxbase-5prealpha/src/sphinx_cepview/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -128,7 +128,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/main_cepview.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -339,8 +340,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -411,7 +412,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main_cepview.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main_cepview.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -492,7 +499,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -564,7 +574,7 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/main_cepview.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -610,7 +620,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/main_cepview.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -631,7 +641,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_cepview/sphinx_cepview b/sphinxbase-5prealpha/src/sphinx_cepview/sphinx_cepview
new file mode 100755
index 0000000..ddeee6c
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_cepview/sphinx_cepview
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# sphinx_cepview - temporary wrapper script for .libs/sphinx_cepview
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The sphinx_cepview program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_cepview:sphinx_cepview:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_cepview:sphinx_cepview:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_cepview:sphinx_cepview:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='sphinx_cepview'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_fe/.deps/sphinx_fe.Po b/sphinxbase-5prealpha/src/sphinx_fe/.deps/sphinx_fe.Po
index 17627b4..fbf644a 100644
--- a/sphinxbase-5prealpha/src/sphinx_fe/.deps/sphinx_fe.Po
+++ b/sphinxbase-5prealpha/src/sphinx_fe/.deps/sphinx_fe.Po
@@ -1,43 +1,62 @@
sphinx_fe.o: sphinx_fe.c /usr/include/stdc-predef.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/stdlib.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/assert.h \
- ../../include/config.h ../../include/sphinxbase/fe.h \
+ /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_tm.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_itimerspec.h \
+ /usr/include/assert.h ../../include/config.h \
+ ../../include/sphinxbase/fe.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/cmd_ln.h ../../include/sphinxbase/prim_type.h \
../../include/sphinx_config.h ../../include/sphinxbase/fixpoint.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
/usr/include/limits.h /usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
/usr/include/arm-linux-gnueabihf/bits/local_lim.h \
/usr/include/linux/limits.h \
@@ -51,7 +70,6 @@ sphinx_fe.o: sphinx_fe.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../include/sphinxbase/byteorder.h \
../../include/sphinxbase/hash_table.h ../../include/sphinxbase/glist.h \
sphinx_wave2feat.h cmd_ln_defn.h
@@ -60,29 +78,39 @@ sphinx_fe.o: sphinx_fe.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -90,57 +118,75 @@ sphinx_fe.o: sphinx_fe.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
/usr/include/stdlib.h:
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/strings.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/time.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/arm-linux-gnueabihf/bits/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_tm.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_itimerspec.h:
/usr/include/assert.h:
@@ -158,9 +204,9 @@ sphinx_fe.o: sphinx_fe.c /usr/include/stdc-predef.h /usr/include/stdio.h \
../../include/sphinxbase/fixpoint.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
@@ -202,8 +248,6 @@ sphinx_fe.o: sphinx_fe.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/sphinxbase/byteorder.h:
../../include/sphinxbase/hash_table.h:
diff --git a/sphinxbase-5prealpha/src/sphinx_fe/.libs/sphinx_fe b/sphinxbase-5prealpha/src/sphinx_fe/.libs/sphinx_fe
new file mode 100755
index 0000000..bbc47ea
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_fe/.libs/sphinx_fe differ
diff --git a/sphinxbase-5prealpha/src/sphinx_fe/Makefile b/sphinxbase-5prealpha/src/sphinx_fe/Makefile
index 2b76808..e3f57d6 100644
--- a/sphinxbase-5prealpha/src/sphinx_fe/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_fe/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/sphinx_fe/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -130,7 +130,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/sphinx_fe.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -179,14 +180,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -220,7 +221,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -256,10 +257,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_fe
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_fe
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_fe
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_fe
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -291,7 +292,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -348,8 +349,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -420,7 +421,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/sphinx_fe.Po
+include ./$(DEPDIR)/sphinx_fe.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -501,7 +508,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -573,7 +583,7 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/sphinx_fe.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -619,7 +629,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/sphinx_fe.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -640,7 +650,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_fe/Makefile.in b/sphinxbase-5prealpha/src/sphinx_fe/Makefile.in
index e62d51a..18549b8 100644
--- a/sphinxbase-5prealpha/src/sphinx_fe/Makefile.in
+++ b/sphinxbase-5prealpha/src/sphinx_fe/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -130,7 +130,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/sphinx_fe.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -348,8 +349,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -420,7 +421,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sphinx_fe.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sphinx_fe.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -501,7 +508,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -573,7 +583,7 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/sphinx_fe.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -619,7 +629,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/sphinx_fe.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -640,7 +650,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_fe/sphinx_fe b/sphinxbase-5prealpha/src/sphinx_fe/sphinx_fe
new file mode 100755
index 0000000..6c2d050
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_fe/sphinx_fe
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# sphinx_fe - temporary wrapper script for .libs/sphinx_fe
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The sphinx_fe program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_fe:sphinx_fe:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_fe:sphinx_fe:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_fe:sphinx_fe:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='sphinx_fe'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.deps/main.Po b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.deps/main.Po
index 9615c4a..61bdcce 100644
--- a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.deps/main.Po
+++ b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.deps/main.Po
@@ -1,46 +1,58 @@
main.o: main.c /usr/include/stdc-predef.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h \
- ../../include/sphinxbase/hash_table.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h ../../include/sphinxbase/hash_table.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/prim_type.h ../../include/sphinx_config.h \
- ../../include/sphinxbase/glist.h \
+ ../../include/sphinxbase/glist.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
/usr/include/arm-linux-gnueabihf/bits/typesizes.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/byteswap.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h \
../../include/sphinxbase/fsg_model.h /usr/include/stdio.h \
- /usr/include/libio.h /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../include/sphinxbase/logmath.h ../../include/sphinxbase/cmd_ln.h \
../../include/sphinxbase/bitvec.h ../../include/sphinxbase/ckd_alloc.h \
/usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../include/sphinxbase/listelem_alloc.h \
../../include/sphinxbase/jsgf.h ../../include/sphinxbase/err.h \
/usr/include/errno.h /usr/include/arm-linux-gnueabihf/bits/errno.h \
@@ -52,27 +64,27 @@ main.o: main.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/stdlib.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
../../include/sphinxbase/hash_table.h:
@@ -84,59 +96,81 @@ main.o: main.c /usr/include/stdc-predef.h /usr/include/string.h \
../../include/sphinxbase/glist.h:
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
-/usr/include/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
-/usr/include/arm-linux-gnueabihf/bits/endian.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+/usr/include/arm-linux-gnueabihf/sys/types.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
-/usr/include/arm-linux-gnueabihf/sys/types.h:
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
+/usr/include/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/endian.h:
+
+/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
+
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
../../include/sphinxbase/fsg_model.h:
/usr/include/stdio.h:
-/usr/include/libio.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -144,8 +178,6 @@ main.o: main.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../include/sphinxbase/logmath.h:
../../include/sphinxbase/cmd_ln.h:
@@ -158,8 +190,6 @@ main.o: main.c /usr/include/stdc-predef.h /usr/include/string.h \
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/sphinxbase/listelem_alloc.h:
../../include/sphinxbase/jsgf.h:
diff --git a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.libs/sphinx_jsgf2fsg b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.libs/sphinx_jsgf2fsg
new file mode 100755
index 0000000..f9dfcf5
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/.libs/sphinx_jsgf2fsg differ
diff --git a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile
index 73524d8..7ba63dd 100644
--- a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/sphinx_jsgf2fsg/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -128,7 +128,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/main.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -176,14 +177,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -217,7 +218,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -253,10 +254,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_jsgf2fsg
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -288,7 +289,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -340,8 +341,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -412,7 +413,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/main.Po
+include ./$(DEPDIR)/main.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -493,7 +500,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -565,7 +575,7 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/main.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -611,7 +621,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/main.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -632,7 +642,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile.in b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile.in
index b217894..851cb4e 100644
--- a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile.in
+++ b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -128,7 +128,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/main.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -340,8 +341,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -412,7 +413,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -493,7 +500,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -565,7 +575,7 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/main.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -611,7 +621,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/main.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -632,7 +642,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/sphinx_jsgf2fsg b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/sphinx_jsgf2fsg
new file mode 100755
index 0000000..084c570
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_jsgf2fsg/sphinx_jsgf2fsg
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# sphinx_jsgf2fsg - temporary wrapper script for .libs/sphinx_jsgf2fsg
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The sphinx_jsgf2fsg program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_jsgf2fsg:sphinx_jsgf2fsg:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_jsgf2fsg:sphinx_jsgf2fsg:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_jsgf2fsg:sphinx_jsgf2fsg:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='sphinx_jsgf2fsg'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/.deps/sphinx_lm_convert.Po b/sphinxbase-5prealpha/src/sphinx_lmtools/.deps/sphinx_lm_convert.Po
index fdd02ef..0b77d4b 100644
--- a/sphinxbase-5prealpha/src/sphinx_lmtools/.deps/sphinx_lm_convert.Po
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/.deps/sphinx_lm_convert.Po
@@ -3,40 +3,53 @@ sphinx_lm_convert.o: sphinx_lm_convert.c /usr/include/stdc-predef.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/prim_type.h ../../include/sphinx_config.h \
../../include/sphinxbase/cmd_ln.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../include/sphinxbase/ngram_model.h ../../include/sphinxbase/mmio.h \
../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
@@ -45,17 +58,15 @@ sphinx_lm_convert.o: sphinx_lm_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
../../include/sphinxbase/strfuncs.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h
@@ -73,29 +84,39 @@ sphinx_lm_convert.o: sphinx_lm_convert.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -103,8 +124,6 @@ sphinx_lm_convert.o: sphinx_lm_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../include/sphinxbase/ngram_model.h:
../../include/sphinxbase/mmio.h:
@@ -117,46 +136,58 @@ sphinx_lm_convert.o: sphinx_lm_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -181,13 +212,11 @@ sphinx_lm_convert.o: sphinx_lm_convert.c /usr/include/stdc-predef.h \
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/math.h:
@@ -195,17 +224,13 @@ sphinx_lm_convert.o: sphinx_lm_convert.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
-
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/.deps/sphinx_lm_eval.Po b/sphinxbase-5prealpha/src/sphinx_lmtools/.deps/sphinx_lm_eval.Po
index 0f1c483..8aa62d2 100644
--- a/sphinxbase-5prealpha/src/sphinx_lmtools/.deps/sphinx_lm_eval.Po
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/.deps/sphinx_lm_eval.Po
@@ -3,40 +3,53 @@ sphinx_lm_eval.o: sphinx_lm_eval.c /usr/include/stdc-predef.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/prim_type.h ../../include/sphinx_config.h \
../../include/sphinxbase/cmd_ln.h /usr/include/stdio.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
/usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h \
../../include/sphinxbase/ngram_model.h ../../include/sphinxbase/mmio.h \
../../include/sphinxbase/ckd_alloc.h /usr/include/stdlib.h \
/usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
+ /usr/include/setjmp.h /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../include/sphinxbase/err.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
@@ -45,17 +58,15 @@ sphinx_lm_eval.o: sphinx_lm_eval.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
../../include/sphinxbase/strfuncs.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/math.h \
/usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h
@@ -73,29 +84,39 @@ sphinx_lm_eval.o: sphinx_lm_eval.c /usr/include/stdc-predef.h \
/usr/include/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
@@ -103,8 +124,6 @@ sphinx_lm_eval.o: sphinx_lm_eval.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/stdio.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
-
../../include/sphinxbase/ngram_model.h:
../../include/sphinxbase/mmio.h:
@@ -117,46 +136,58 @@ sphinx_lm_eval.o: sphinx_lm_eval.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/setjmp.h:
/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/sphinxbase/err.h:
/usr/include/errno.h:
@@ -181,13 +212,11 @@ sphinx_lm_eval.o: sphinx_lm_eval.c /usr/include/stdc-predef.h \
/usr/include/string.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
-
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/math.h:
@@ -195,17 +224,13 @@ sphinx_lm_eval.o: sphinx_lm_eval.c /usr/include/stdc-predef.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
-
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
-
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_convert b/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_convert
new file mode 100755
index 0000000..6b2e7d4
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_convert differ
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_eval b/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_eval
new file mode 100755
index 0000000..8b65255
Binary files /dev/null and b/sphinxbase-5prealpha/src/sphinx_lmtools/.libs/sphinx_lm_eval differ
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile b/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile
index f2f8f21..8710191 100644
--- a/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# src/sphinx_lmtools/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/sphinx_lm_convert.Po \
+ ./$(DEPDIR)/sphinx_lm_eval.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -184,14 +186,14 @@ ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -225,7 +227,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -261,10 +263,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_lmtools
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/src/sphinx_lmtools
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_lmtools
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/sphinx_lmtools
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +298,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -349,8 +351,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -425,8 +427,14 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/sphinx_lm_convert.Po
-include ./$(DEPDIR)/sphinx_lm_eval.Po
+include ./$(DEPDIR)/sphinx_lm_convert.Po # am--include-marker
+include ./$(DEPDIR)/sphinx_lm_eval.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -507,7 +515,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -579,7 +590,8 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/sphinx_lm_convert.Po
+ -rm -f ./$(DEPDIR)/sphinx_lm_eval.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -625,7 +637,8 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/sphinx_lm_convert.Po
+ -rm -f ./$(DEPDIR)/sphinx_lm_eval.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -646,7 +659,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile.in b/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile.in
index 5afe115..da2a662 100644
--- a/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile.in
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/sphinx_lm_convert.Po \
+ ./$(DEPDIR)/sphinx_lm_eval.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -349,8 +351,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -425,8 +427,14 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sphinx_lm_convert.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sphinx_lm_eval.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sphinx_lm_convert.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sphinx_lm_eval.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -507,7 +515,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -579,7 +590,8 @@ clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/sphinx_lm_convert.Po
+ -rm -f ./$(DEPDIR)/sphinx_lm_eval.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -625,7 +637,8 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/sphinx_lm_convert.Po
+ -rm -f ./$(DEPDIR)/sphinx_lm_eval.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -646,7 +659,7 @@ uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \
ctags ctags-am distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_convert b/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_convert
new file mode 100755
index 0000000..599e474
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_convert
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# sphinx_lm_convert - temporary wrapper script for .libs/sphinx_lm_convert
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The sphinx_lm_convert program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_lm_convert:sphinx_lm_convert:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_lm_convert:sphinx_lm_convert:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_lm_convert:sphinx_lm_convert:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='sphinx_lm_convert'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_eval b/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_eval
new file mode 100755
index 0000000..d824bc9
--- /dev/null
+++ b/sphinxbase-5prealpha/src/sphinx_lmtools/sphinx_lm_eval
@@ -0,0 +1,210 @@
+#! /bin/bash
+
+# sphinx_lm_eval - temporary wrapper script for .libs/sphinx_lm_eval
+# Generated by libtool (GNU libtool) 2.4.6 Debian-2.4.6-9
+#
+# The sphinx_lm_eval program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+sed_quote_subst='s|\([`"$\\]\)|\\\1|g'
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
+ # is contrary to our usage. Disable this feature.
+ alias -g '${1+"$@"}'='"$@"'
+ setopt NO_GLOB_SUBST
+else
+ case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac
+fi
+BIN_SH=xpg4; export BIN_SH # for Tru64
+DUALCASE=1; export DUALCASE # for MKS sh
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+
+relink_command=""
+
+# This environment variable determines our operation mode.
+if test "$libtool_install_magic" = "%%%MAGIC variable%%%"; then
+ # install mode needs the following variables:
+ generated_by_libtool_version='2.4.6'
+ notinst_deplibs=' ../../src/libsphinxbase/libsphinxbase.la'
+else
+ # When we are sourced in execute mode, $file and $ECHO are already set.
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ file="$0"
+
+# A function that is used when there is no print builtin or printf.
+func_fallback_echo ()
+{
+ eval 'cat <<_LTECHO_EOF
+$1
+_LTECHO_EOF'
+}
+ ECHO="printf %s\\n"
+ fi
+
+# Very basic option parsing. These options are (a) specific to
+# the libtool wrapper, (b) are identical between the wrapper
+# /script/ and the wrapper /executable/ that is used only on
+# windows platforms, and (c) all begin with the string --lt-
+# (application programs are unlikely to have options that match
+# this pattern).
+#
+# There are only two supported options: --lt-debug and
+# --lt-dump-script. There is, deliberately, no --lt-help.
+#
+# The first argument to this parsing function should be the
+# script's ../../libtool value, followed by no.
+lt_option_debug=
+func_parse_lt_options ()
+{
+ lt_script_arg0=$0
+ shift
+ for lt_opt
+ do
+ case "$lt_opt" in
+ --lt-debug) lt_option_debug=1 ;;
+ --lt-dump-script)
+ lt_dump_D=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%/[^/]*$%%'`
+ test "X$lt_dump_D" = "X$lt_script_arg0" && lt_dump_D=.
+ lt_dump_F=`$ECHO "X$lt_script_arg0" | /bin/sed -e 's/^X//' -e 's%^.*/%%'`
+ cat "$lt_dump_D/$lt_dump_F"
+ exit 0
+ ;;
+ --lt-*)
+ $ECHO "Unrecognized --lt- option: '$lt_opt'" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+
+ # Print the debug banner immediately:
+ if test -n "$lt_option_debug"; then
+ echo "sphinx_lm_eval:sphinx_lm_eval:$LINENO: libtool wrapper (GNU libtool) 2.4.6 Debian-2.4.6-9" 1>&2
+ fi
+}
+
+# Used when --lt-debug. Prints its arguments to stdout
+# (redirection is the responsibility of the caller)
+func_lt_dump_args ()
+{
+ lt_dump_args_N=1;
+ for lt_arg
+ do
+ $ECHO "sphinx_lm_eval:sphinx_lm_eval:$LINENO: newargv[$lt_dump_args_N]: $lt_arg"
+ lt_dump_args_N=`expr $lt_dump_args_N + 1`
+ done
+}
+
+# Core function for launching the target application
+func_exec_program_core ()
+{
+
+ if test -n "$lt_option_debug"; then
+ $ECHO "sphinx_lm_eval:sphinx_lm_eval:$LINENO: newargv[0]: $progdir/$program" 1>&2
+ func_lt_dump_args ${1+"$@"} 1>&2
+ fi
+ exec "$progdir/$program" ${1+"$@"}
+
+ $ECHO "$0: cannot exec $program $*" 1>&2
+ exit 1
+}
+
+# A function to encapsulate launching the target application
+# Strips options in the --lt-* namespace from $@ and
+# launches target application with the remaining arguments.
+func_exec_program ()
+{
+ case " $* " in
+ *\ --lt-*)
+ for lt_wr_arg
+ do
+ case $lt_wr_arg in
+ --lt-*) ;;
+ *) set x "$@" "$lt_wr_arg"; shift;;
+ esac
+ shift
+ done ;;
+ esac
+ func_exec_program_core ${1+"$@"}
+}
+
+ # Parse options
+ func_parse_lt_options "$0" ${1+"$@"}
+
+ # Find the directory that this script lives in.
+ thisdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+ test "x$thisdir" = "x$file" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=`ls -ld "$file" | /bin/sed -n 's/.*-> //p'`
+ while test -n "$file"; do
+ destdir=`$ECHO "$file" | /bin/sed 's%/[^/]*$%%'`
+
+ # If there was a directory component, then change thisdir.
+ if test "x$destdir" != "x$file"; then
+ case "$destdir" in
+ [\\/]* | [A-Za-z]:[\\/]*) thisdir="$destdir" ;;
+ *) thisdir="$thisdir/$destdir" ;;
+ esac
+ fi
+
+ file=`$ECHO "$file" | /bin/sed 's%^.*/%%'`
+ file=`ls -ld "$thisdir/$file" | /bin/sed -n 's/.*-> //p'`
+ done
+
+ # Usually 'no', except on cygwin/mingw when embedded into
+ # the cwrapper.
+ WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=no
+ if test "$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR" = "yes"; then
+ # special case for '.'
+ if test "$thisdir" = "."; then
+ thisdir=`pwd`
+ fi
+ # remove .libs from thisdir
+ case "$thisdir" in
+ *[\\/].libs ) thisdir=`$ECHO "$thisdir" | /bin/sed 's%[\\/][^\\/]*$%%'` ;;
+ .libs ) thisdir=. ;;
+ esac
+ fi
+
+ # Try to get the absolute directory name.
+ absdir=`cd "$thisdir" && pwd`
+ test -n "$absdir" && thisdir="$absdir"
+
+ program='sphinx_lm_eval'
+ progdir="$thisdir/.libs"
+
+
+ if test -f "$progdir/$program"; then
+ # Add our own library path to LD_LIBRARY_PATH
+ LD_LIBRARY_PATH="/home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/src/libsphinxbase/.libs:$LD_LIBRARY_PATH"
+
+ # Some systems cannot cope with colon-terminated LD_LIBRARY_PATH
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ LD_LIBRARY_PATH=`$ECHO "$LD_LIBRARY_PATH" | /bin/sed 's/::*$//'`
+
+ export LD_LIBRARY_PATH
+
+ if test "$libtool_execute_magic" != "%%%MAGIC variable%%%"; then
+ # Run the actual program with our arguments.
+ func_exec_program ${1+"$@"}
+ fi
+ else
+ # The program doesn't exist.
+ $ECHO "$0: error: '$progdir/$program' does not exist" 1>&2
+ $ECHO "This script is just a wrapper for $program." 1>&2
+ $ECHO "See the libtool documentation for more information." 1>&2
+ exit 1
+ fi
+fi
diff --git a/sphinxbase-5prealpha/swig/Makefile b/sphinxbase-5prealpha/swig/Makefile
index ac6f870..114af61 100644
--- a/sphinxbase-5prealpha/swig/Makefile
+++ b/sphinxbase-5prealpha/swig/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# swig/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -167,7 +167,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -215,14 +215,14 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -256,7 +256,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -292,10 +292,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/swig
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/swig
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/swig
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/swig
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -327,7 +327,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -386,8 +386,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -525,7 +525,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/swig/Makefile.in b/sphinxbase-5prealpha/swig/Makefile.in
index da00776..43b80f7 100644
--- a/sphinxbase-5prealpha/swig/Makefile.in
+++ b/sphinxbase-5prealpha/swig/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -167,7 +167,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -386,8 +386,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -525,7 +525,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/swig/python/.deps/_sphinxbase_la-sphinxbase_wrap.Plo b/sphinxbase-5prealpha/swig/python/.deps/_sphinxbase_la-sphinxbase_wrap.Plo
index 50a5b9c..6f0b183 100644
--- a/sphinxbase-5prealpha/swig/python/.deps/_sphinxbase_la-sphinxbase_wrap.Plo
+++ b/sphinxbase-5prealpha/swig/python/.deps/_sphinxbase_la-sphinxbase_wrap.Plo
@@ -3,11 +3,13 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/python2.7/patchlevel.h /usr/include/python2.7/pyconfig.h \
/usr/include/arm-linux-gnueabihf/python2.7/pyconfig.h \
/usr/include/python2.7/pymacconfig.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h \
- /usr/include/limits.h /usr/include/features.h \
- /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h \
+ /usr/include/limits.h \
+ /usr/include/arm-linux-gnueabihf/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/arm-linux-gnueabihf/sys/cdefs.h \
/usr/include/arm-linux-gnueabihf/bits/wordsize.h \
+ /usr/include/arm-linux-gnueabihf/bits/long-double.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs.h \
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h \
/usr/include/arm-linux-gnueabihf/bits/posix1_lim.h \
@@ -15,63 +17,87 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/linux/limits.h \
/usr/include/arm-linux-gnueabihf/bits/posix2_lim.h \
/usr/include/arm-linux-gnueabihf/bits/xopen_lim.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h /usr/include/stdio.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h \
+ /usr/include/arm-linux-gnueabihf/bits/uio_lim.h /usr/include/stdio.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h \
/usr/include/arm-linux-gnueabihf/bits/types.h \
- /usr/include/arm-linux-gnueabihf/bits/typesizes.h /usr/include/libio.h \
- /usr/include/_G_config.h /usr/include/wchar.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h \
+ /usr/include/arm-linux-gnueabihf/bits/typesizes.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/cookie_io_functions_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio_lim.h \
/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio.h \
- /usr/include/arm-linux-gnueabihf/bits/stdio2.h /usr/include/string.h \
- /usr/include/xlocale.h /usr/include/arm-linux-gnueabihf/bits/string.h \
- /usr/include/arm-linux-gnueabihf/bits/string2.h /usr/include/stdlib.h \
- /usr/include/arm-linux-gnueabihf/bits/string3.h /usr/include/errno.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdio.h /usr/include/string.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/locale_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h \
+ /usr/include/strings.h /usr/include/errno.h \
/usr/include/arm-linux-gnueabihf/bits/errno.h /usr/include/linux/errno.h \
/usr/include/arm-linux-gnueabihf/asm/errno.h \
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
- /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
- /usr/include/arm-linux-gnueabihf/bits/waitstatus.h /usr/include/endian.h \
- /usr/include/arm-linux-gnueabihf/bits/endian.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/error_t.h \
+ /usr/include/stdlib.h /usr/include/arm-linux-gnueabihf/bits/waitflags.h \
+ /usr/include/arm-linux-gnueabihf/bits/waitstatus.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn.h \
+ /usr/include/arm-linux-gnueabihf/bits/floatn-common.h \
+ /usr/include/arm-linux-gnueabihf/sys/types.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clock_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/time_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/timer_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-intn.h \
+ /usr/include/endian.h /usr/include/arm-linux-gnueabihf/bits/endian.h \
/usr/include/arm-linux-gnueabihf/bits/byteswap.h \
- /usr/include/arm-linux-gnueabihf/bits/byteswap-16.h \
- /usr/include/arm-linux-gnueabihf/sys/types.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/uintn-identity.h \
/usr/include/arm-linux-gnueabihf/sys/select.h \
/usr/include/arm-linux-gnueabihf/bits/select.h \
- /usr/include/arm-linux-gnueabihf/bits/sigset.h \
- /usr/include/arm-linux-gnueabihf/bits/time.h \
- /usr/include/arm-linux-gnueabihf/bits/select2.h \
- /usr/include/arm-linux-gnueabihf/sys/sysmacros.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h \
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h \
+ /usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h \
+ /usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h \
/usr/include/alloca.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h \
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h \
- /usr/include/arm-linux-gnueabihf/bits/stdlib.h /usr/include/unistd.h \
- /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
+ /usr/include/unistd.h /usr/include/arm-linux-gnueabihf/bits/posix_opt.h \
/usr/include/arm-linux-gnueabihf/bits/environments.h \
- /usr/include/arm-linux-gnueabihf/bits/confname.h /usr/include/getopt.h \
- /usr/include/arm-linux-gnueabihf/bits/unistd.h /usr/include/assert.h \
- /usr/include/python2.7/pyport.h /usr/include/inttypes.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h \
+ /usr/include/arm-linux-gnueabihf/bits/confname.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_posix.h \
+ /usr/include/arm-linux-gnueabihf/bits/getopt_core.h /usr/include/crypt.h \
+ /usr/include/assert.h /usr/include/python2.7/pyport.h \
+ /usr/include/inttypes.h \
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h \
/usr/include/stdint.h /usr/include/arm-linux-gnueabihf/bits/wchar.h \
- /usr/include/math.h /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
+ /usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h /usr/include/math.h \
+ /usr/include/arm-linux-gnueabihf/bits/math-vector.h \
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_val.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_valf.h \
- /usr/include/arm-linux-gnueabihf/bits/huge_vall.h \
- /usr/include/arm-linux-gnueabihf/bits/inf.h \
- /usr/include/arm-linux-gnueabihf/bits/nan.h \
- /usr/include/arm-linux-gnueabihf/bits/mathdef.h \
+ /usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-logb.h \
+ /usr/include/arm-linux-gnueabihf/bits/fp-fast.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h \
/usr/include/arm-linux-gnueabihf/bits/mathcalls.h \
+ /usr/include/arm-linux-gnueabihf/bits/mathcalls-narrow.h \
+ /usr/include/arm-linux-gnueabihf/bits/iscanonical.h \
/usr/include/arm-linux-gnueabihf/bits/mathinline.h \
- /usr/include/arm-linux-gnueabihf/sys/time.h \
+ /usr/include/arm-linux-gnueabihf/sys/time.h /usr/include/time.h \
+ /usr/include/arm-linux-gnueabihf/bits/time.h \
/usr/include/arm-linux-gnueabihf/bits/timex.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_tm.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/struct_itimerspec.h \
/usr/include/arm-linux-gnueabihf/sys/stat.h \
/usr/include/arm-linux-gnueabihf/bits/stat.h \
+ /usr/include/arm-linux-gnueabihf/bits/statx.h \
/usr/include/python2.7/pymath.h /usr/include/python2.7/pymem.h \
/usr/include/python2.7/object.h /usr/include/python2.7/objimpl.h \
/usr/include/python2.7/pydebug.h /usr/include/python2.7/unicodeobject.h \
- /usr/include/ctype.h /usr/include/arm-linux-gnueabihf/bits/wchar2.h \
+ /usr/include/ctype.h /usr/include/wchar.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/wint_t.h \
+ /usr/include/arm-linux-gnueabihf/bits/types/mbstate_t.h \
/usr/include/python2.7/intobject.h /usr/include/python2.7/boolobject.h \
/usr/include/python2.7/longobject.h /usr/include/python2.7/floatobject.h \
/usr/include/python2.7/complexobject.h \
@@ -101,16 +127,6 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/python2.7/eval.h /usr/include/python2.7/pyctype.h \
/usr/include/python2.7/pystrtod.h /usr/include/python2.7/pystrcmp.h \
/usr/include/python2.7/dtoa.h /usr/include/python2.7/pyfpe.h \
- /usr/include/signal.h /usr/include/arm-linux-gnueabihf/bits/signum.h \
- /usr/include/arm-linux-gnueabihf/bits/siginfo.h \
- /usr/include/arm-linux-gnueabihf/bits/sigaction.h \
- /usr/include/arm-linux-gnueabihf/bits/sigcontext.h \
- /usr/include/arm-linux-gnueabihf/asm/sigcontext.h \
- /usr/include/arm-linux-gnueabihf/bits/sigstack.h \
- /usr/include/arm-linux-gnueabihf/sys/ucontext.h \
- /usr/include/arm-linux-gnueabihf/bits/sigthread.h /usr/include/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
- /usr/include/arm-linux-gnueabihf/bits/setjmp2.h \
../../include/sphinxbase/cmd_ln.h \
../../include/sphinxbase/sphinxbase_export.h \
../../include/sphinxbase/prim_type.h ../../include/sphinx_config.h \
@@ -120,10 +136,11 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
../../include/sphinxbase/jsgf.h ../../include/sphinxbase/hash_table.h \
../../include/sphinxbase/glist.h ../../include/sphinxbase/fsg_model.h \
../../include/sphinxbase/logmath.h ../../include/sphinxbase/bitvec.h \
- ../../include/sphinxbase/ckd_alloc.h \
+ ../../include/sphinxbase/ckd_alloc.h /usr/include/setjmp.h \
+ /usr/include/arm-linux-gnueabihf/bits/setjmp.h \
../../include/sphinxbase/listelem_alloc.h \
../../include/sphinxbase/ngram_model.h ../../include/sphinxbase/mmio.h \
- /usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h
+ /usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h
/usr/include/stdc-predef.h:
@@ -137,18 +154,22 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/python2.7/pymacconfig.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/limits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/limits.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include-fixed/syslimits.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include-fixed/syslimits.h:
/usr/include/limits.h:
+/usr/include/arm-linux-gnueabihf/bits/libc-header-start.h:
+
/usr/include/features.h:
/usr/include/arm-linux-gnueabihf/sys/cdefs.h:
/usr/include/arm-linux-gnueabihf/bits/wordsize.h:
+/usr/include/arm-linux-gnueabihf/bits/long-double.h:
+
/usr/include/arm-linux-gnueabihf/gnu/stubs.h:
/usr/include/arm-linux-gnueabihf/gnu/stubs-hard.h:
@@ -163,41 +184,45 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/arm-linux-gnueabihf/bits/xopen_lim.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
+/usr/include/arm-linux-gnueabihf/bits/uio_lim.h:
/usr/include/stdio.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stddef.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stddef.h:
+
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdarg.h:
/usr/include/arm-linux-gnueabihf/bits/types.h:
/usr/include/arm-linux-gnueabihf/bits/typesizes.h:
-/usr/include/libio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos_t.h:
-/usr/include/_G_config.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__mbstate_t.h:
-/usr/include/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__fpos64_t.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdarg.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__FILE.h:
-/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h:
+/usr/include/arm-linux-gnueabihf/bits/types/FILE.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_FILE.h:
-/usr/include/arm-linux-gnueabihf/bits/stdio2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/cookie_io_functions_t.h:
-/usr/include/string.h:
+/usr/include/arm-linux-gnueabihf/bits/stdio_lim.h:
-/usr/include/xlocale.h:
+/usr/include/arm-linux-gnueabihf/bits/sys_errlist.h:
-/usr/include/arm-linux-gnueabihf/bits/string.h:
+/usr/include/arm-linux-gnueabihf/bits/stdio.h:
+
+/usr/include/string.h:
-/usr/include/arm-linux-gnueabihf/bits/string2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/locale_t.h:
-/usr/include/stdlib.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__locale_t.h:
-/usr/include/arm-linux-gnueabihf/bits/string3.h:
+/usr/include/strings.h:
/usr/include/errno.h:
@@ -211,44 +236,62 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/asm-generic/errno-base.h:
+/usr/include/arm-linux-gnueabihf/bits/types/error_t.h:
+
+/usr/include/stdlib.h:
+
/usr/include/arm-linux-gnueabihf/bits/waitflags.h:
/usr/include/arm-linux-gnueabihf/bits/waitstatus.h:
+/usr/include/arm-linux-gnueabihf/bits/floatn.h:
+
+/usr/include/arm-linux-gnueabihf/bits/floatn-common.h:
+
+/usr/include/arm-linux-gnueabihf/sys/types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clock_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/clockid_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/time_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/timer_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/stdint-intn.h:
+
/usr/include/endian.h:
/usr/include/arm-linux-gnueabihf/bits/endian.h:
/usr/include/arm-linux-gnueabihf/bits/byteswap.h:
-/usr/include/arm-linux-gnueabihf/bits/byteswap-16.h:
-
-/usr/include/arm-linux-gnueabihf/sys/types.h:
-
-/usr/include/time.h:
+/usr/include/arm-linux-gnueabihf/bits/uintn-identity.h:
/usr/include/arm-linux-gnueabihf/sys/select.h:
/usr/include/arm-linux-gnueabihf/bits/select.h:
-/usr/include/arm-linux-gnueabihf/bits/sigset.h:
+/usr/include/arm-linux-gnueabihf/bits/types/sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/time.h:
+/usr/include/arm-linux-gnueabihf/bits/types/__sigset_t.h:
-/usr/include/arm-linux-gnueabihf/bits/select2.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timeval.h:
-/usr/include/arm-linux-gnueabihf/sys/sysmacros.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_timespec.h:
/usr/include/arm-linux-gnueabihf/bits/pthreadtypes.h:
+/usr/include/arm-linux-gnueabihf/bits/thread-shared-types.h:
+
+/usr/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h:
+
/usr/include/alloca.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-bsearch.h:
/usr/include/arm-linux-gnueabihf/bits/stdlib-float.h:
-/usr/include/arm-linux-gnueabihf/bits/stdlib.h:
-
/usr/include/unistd.h:
/usr/include/arm-linux-gnueabihf/bits/posix_opt.h:
@@ -257,9 +300,11 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/arm-linux-gnueabihf/bits/confname.h:
-/usr/include/getopt.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_posix.h:
-/usr/include/arm-linux-gnueabihf/bits/unistd.h:
+/usr/include/arm-linux-gnueabihf/bits/getopt_core.h:
+
+/usr/include/crypt.h:
/usr/include/assert.h:
@@ -267,42 +312,54 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/inttypes.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/stdint.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/stdint.h:
/usr/include/stdint.h:
/usr/include/arm-linux-gnueabihf/bits/wchar.h:
+/usr/include/arm-linux-gnueabihf/bits/stdint-uintn.h:
+
/usr/include/math.h:
/usr/include/arm-linux-gnueabihf/bits/math-vector.h:
/usr/include/arm-linux-gnueabihf/bits/libm-simd-decl-stubs.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_val.h:
+/usr/include/arm-linux-gnueabihf/bits/flt-eval-method.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_valf.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-logb.h:
-/usr/include/arm-linux-gnueabihf/bits/huge_vall.h:
+/usr/include/arm-linux-gnueabihf/bits/fp-fast.h:
-/usr/include/arm-linux-gnueabihf/bits/inf.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-helper-functions.h:
-/usr/include/arm-linux-gnueabihf/bits/nan.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
-/usr/include/arm-linux-gnueabihf/bits/mathdef.h:
+/usr/include/arm-linux-gnueabihf/bits/mathcalls-narrow.h:
-/usr/include/arm-linux-gnueabihf/bits/mathcalls.h:
+/usr/include/arm-linux-gnueabihf/bits/iscanonical.h:
/usr/include/arm-linux-gnueabihf/bits/mathinline.h:
/usr/include/arm-linux-gnueabihf/sys/time.h:
+/usr/include/time.h:
+
+/usr/include/arm-linux-gnueabihf/bits/time.h:
+
/usr/include/arm-linux-gnueabihf/bits/timex.h:
+/usr/include/arm-linux-gnueabihf/bits/types/struct_tm.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/struct_itimerspec.h:
+
/usr/include/arm-linux-gnueabihf/sys/stat.h:
/usr/include/arm-linux-gnueabihf/bits/stat.h:
+/usr/include/arm-linux-gnueabihf/bits/statx.h:
+
/usr/include/python2.7/pymath.h:
/usr/include/python2.7/pymem.h:
@@ -317,7 +374,11 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/ctype.h:
-/usr/include/arm-linux-gnueabihf/bits/wchar2.h:
+/usr/include/wchar.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/wint_t.h:
+
+/usr/include/arm-linux-gnueabihf/bits/types/mbstate_t.h:
/usr/include/python2.7/intobject.h:
@@ -419,30 +480,6 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
/usr/include/python2.7/pyfpe.h:
-/usr/include/signal.h:
-
-/usr/include/arm-linux-gnueabihf/bits/signum.h:
-
-/usr/include/arm-linux-gnueabihf/bits/siginfo.h:
-
-/usr/include/arm-linux-gnueabihf/bits/sigaction.h:
-
-/usr/include/arm-linux-gnueabihf/bits/sigcontext.h:
-
-/usr/include/arm-linux-gnueabihf/asm/sigcontext.h:
-
-/usr/include/arm-linux-gnueabihf/bits/sigstack.h:
-
-/usr/include/arm-linux-gnueabihf/sys/ucontext.h:
-
-/usr/include/arm-linux-gnueabihf/bits/sigthread.h:
-
-/usr/include/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
-
-/usr/include/arm-linux-gnueabihf/bits/setjmp2.h:
-
../../include/sphinxbase/cmd_ln.h:
../../include/sphinxbase/sphinxbase_export.h:
@@ -477,10 +514,14 @@ _sphinxbase_la-sphinxbase_wrap.lo: sphinxbase_wrap.c \
../../include/sphinxbase/ckd_alloc.h:
+/usr/include/setjmp.h:
+
+/usr/include/arm-linux-gnueabihf/bits/setjmp.h:
+
../../include/sphinxbase/listelem_alloc.h:
../../include/sphinxbase/ngram_model.h:
../../include/sphinxbase/mmio.h:
-/usr/lib/gcc/arm-linux-gnueabihf/5/include/float.h:
+/usr/lib/gcc/arm-linux-gnueabihf/8/include/float.h:
diff --git a/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0 b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0
new file mode 100755
index 0000000..ed57476
Binary files /dev/null and b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0 differ
diff --git a/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0 b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0
new file mode 100755
index 0000000..ed57476
Binary files /dev/null and b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0 differ
diff --git a/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0T b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0T
new file mode 100755
index 0000000..9305491
Binary files /dev/null and b/sphinxbase-5prealpha/swig/python/.libs/_sphinxbase.so.0.0.0T differ
diff --git a/sphinxbase-5prealpha/swig/python/Makefile b/sphinxbase-5prealpha/swig/python/Makefile
index 021cb12..cd32070 100644
--- a/sphinxbase-5prealpha/swig/python/Makefile
+++ b/sphinxbase-5prealpha/swig/python/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# swig/python/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -163,7 +163,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -192,7 +193,7 @@ am__can_run_installinfo = \
esac
am__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile)
am__pep3147_tweak = \
- sed -e 's|\.py$$||' -e 's|[^/]*$$|__pycache__/&.*.py|'
+ sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc\n&.*.pyo|'
am__pkgpyexec_PYTHON_DIST = __init__.py
py_compile = $(top_srcdir)/py-compile
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
@@ -217,14 +218,14 @@ CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/py-compile
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -258,7 +259,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -294,10 +295,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/swig/python
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/swig/python
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/swig/python
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/swig/python
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -329,7 +330,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -397,8 +398,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -454,7 +455,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo
+include ./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -522,20 +529,15 @@ uninstall-nodist_pkgpyexecPYTHON:
dir='$(DESTDIR)$(pkgpyexecdir)'; \
pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
- py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
- echo "$$py_files_pep3147";\
- pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
- pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
st=0; \
- for files in \
- "$$py_files" \
- "$$pyc_files" \
- "$$pyo_files" \
- "$$pyc_files_pep3147" \
- "$$pyo_files_pep3147" \
- ; do \
+ for files in "$$py_files" "$$pyc_files" "$$pyo_files"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
+ dir='$(DESTDIR)$(pkgpyexecdir)/__pycache__'; \
+ echo "$$py_files" | $(am__pep3147_tweak) | $(am__base_list) | \
+ while read files; do \
+ $(am__uninstall_files_from_dir) || st=$$?; \
+ done || exit $$?; \
exit $$st
install-pkgpyexecPYTHON: $(pkgpyexec_PYTHON)
@$(NORMAL_INSTALL)
@@ -570,20 +572,15 @@ uninstall-pkgpyexecPYTHON:
dir='$(DESTDIR)$(pkgpyexecdir)'; \
pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
- py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
- echo "$$py_files_pep3147";\
- pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
- pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
st=0; \
- for files in \
- "$$py_files" \
- "$$pyc_files" \
- "$$pyo_files" \
- "$$pyc_files_pep3147" \
- "$$pyo_files_pep3147" \
- ; do \
+ for files in "$$py_files" "$$pyc_files" "$$pyo_files"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
+ dir='$(DESTDIR)$(pkgpyexecdir)/__pycache__'; \
+ echo "$$py_files" | $(am__pep3147_tweak) | $(am__base_list) | \
+ while read files; do \
+ $(am__uninstall_files_from_dir) || st=$$?; \
+ done || exit $$?; \
exit $$st
ID: $(am__tagged_files)
@@ -638,7 +635,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -712,7 +712,7 @@ clean-am: clean-generic clean-libtool clean-pkgpyexecLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -759,7 +759,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -781,17 +781,18 @@ uninstall-am: uninstall-nodist_pkgpyexecPYTHON \
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-pkgpyexecLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-nodist_pkgpyexecPYTHON \
- install-pdf install-pdf-am install-pkgpyexecLTLIBRARIES \
- install-pkgpyexecPYTHON install-ps install-ps-am install-strip \
- installcheck installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-pkgpyexecLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man \
+ install-nodist_pkgpyexecPYTHON install-pdf install-pdf-am \
+ install-pkgpyexecLTLIBRARIES install-pkgpyexecPYTHON \
+ install-ps install-ps-am install-strip installcheck \
+ installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am \
diff --git a/sphinxbase-5prealpha/swig/python/Makefile.in b/sphinxbase-5prealpha/swig/python/Makefile.in
index 7fc88e0..a0905b4 100644
--- a/sphinxbase-5prealpha/swig/python/Makefile.in
+++ b/sphinxbase-5prealpha/swig/python/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -163,7 +163,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -192,7 +193,7 @@ am__can_run_installinfo = \
esac
am__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile)
am__pep3147_tweak = \
- sed -e 's|\.py$$||' -e 's|[^/]*$$|__pycache__/&.*.py|'
+ sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc\n&.*.pyo|'
am__pkgpyexec_PYTHON_DIST = __init__.py
py_compile = $(top_srcdir)/py-compile
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
@@ -397,8 +398,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -454,7 +455,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -522,20 +529,15 @@ uninstall-nodist_pkgpyexecPYTHON:
dir='$(DESTDIR)$(pkgpyexecdir)'; \
pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
- py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
- echo "$$py_files_pep3147";\
- pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
- pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
st=0; \
- for files in \
- "$$py_files" \
- "$$pyc_files" \
- "$$pyo_files" \
- "$$pyc_files_pep3147" \
- "$$pyo_files_pep3147" \
- ; do \
+ for files in "$$py_files" "$$pyc_files" "$$pyo_files"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
+ dir='$(DESTDIR)$(pkgpyexecdir)/__pycache__'; \
+ echo "$$py_files" | $(am__pep3147_tweak) | $(am__base_list) | \
+ while read files; do \
+ $(am__uninstall_files_from_dir) || st=$$?; \
+ done || exit $$?; \
exit $$st
install-pkgpyexecPYTHON: $(pkgpyexec_PYTHON)
@$(NORMAL_INSTALL)
@@ -570,20 +572,15 @@ uninstall-pkgpyexecPYTHON:
dir='$(DESTDIR)$(pkgpyexecdir)'; \
pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
- py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
- echo "$$py_files_pep3147";\
- pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
- pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
st=0; \
- for files in \
- "$$py_files" \
- "$$pyc_files" \
- "$$pyo_files" \
- "$$pyc_files_pep3147" \
- "$$pyo_files_pep3147" \
- ; do \
+ for files in "$$py_files" "$$pyc_files" "$$pyo_files"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
+ dir='$(DESTDIR)$(pkgpyexecdir)/__pycache__'; \
+ echo "$$py_files" | $(am__pep3147_tweak) | $(am__base_list) | \
+ while read files; do \
+ $(am__uninstall_files_from_dir) || st=$$?; \
+ done || exit $$?; \
exit $$st
ID: $(am__tagged_files)
@@ -638,7 +635,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -712,7 +712,7 @@ clean-am: clean-generic clean-libtool clean-pkgpyexecLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -759,7 +759,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/_sphinxbase_la-sphinxbase_wrap.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -781,17 +781,18 @@ uninstall-am: uninstall-nodist_pkgpyexecPYTHON \
.MAKE: install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
- clean-libtool clean-pkgpyexecLTLIBRARIES cscopelist-am ctags \
- ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-nodist_pkgpyexecPYTHON \
- install-pdf install-pdf-am install-pkgpyexecLTLIBRARIES \
- install-pkgpyexecPYTHON install-ps install-ps-am install-strip \
- installcheck installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
+ clean-generic clean-libtool clean-pkgpyexecLTLIBRARIES \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man \
+ install-nodist_pkgpyexecPYTHON install-pdf install-pdf-am \
+ install-pkgpyexecLTLIBRARIES install-pkgpyexecPYTHON \
+ install-ps install-ps-am install-strip installcheck \
+ installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am \
diff --git a/sphinxbase-5prealpha/swig/python/sphinxbase.py b/sphinxbase-5prealpha/swig/python/sphinxbase.py
new file mode 100644
index 0000000..f67d5c6
--- /dev/null
+++ b/sphinxbase-5prealpha/swig/python/sphinxbase.py
@@ -0,0 +1,495 @@
+# This file was automatically generated by SWIG (http://www.swig.org).
+# Version 2.0.11
+#
+# Do not make changes to this file unless you know what you are doing--modify
+# the SWIG interface file instead.
+
+
+
+
+"""
+This documentation was automatically generated using original comments in
+Doxygen format. As some C types and data structures cannot be directly mapped
+into Python types, some non-trivial type conversion could have place.
+Basically a type is replaced with another one that has the closest match, and
+sometimes one argument of generated function comprises several arguments of the
+original function (usually two).
+
+Functions having error code as the return value and returning effective
+value in one of its arguments are transformed so that the effective value is
+returned in a regular fashion and run-time exception is being thrown in case of
+negative error code.
+"""
+
+
+from sys import version_info
+if version_info >= (2,6,0):
+ def swig_import_helper():
+ from os.path import dirname
+ import imp
+ fp = None
+ try:
+ fp, pathname, description = imp.find_module('_sphinxbase', [dirname(__file__)])
+ except ImportError:
+ import _sphinxbase
+ return _sphinxbase
+ if fp is not None:
+ try:
+ _mod = imp.load_module('_sphinxbase', fp, pathname, description)
+ finally:
+ fp.close()
+ return _mod
+ _sphinxbase = swig_import_helper()
+ del swig_import_helper
+else:
+ import _sphinxbase
+del version_info
+try:
+ _swig_property = property
+except NameError:
+ pass # Python < 2.2 doesn't have 'property'.
+def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
+ if (name == "thisown"): return self.this.own(value)
+ if (name == "this"):
+ if type(value).__name__ == 'SwigPyObject':
+ self.__dict__[name] = value
+ return
+ method = class_type.__swig_setmethods__.get(name,None)
+ if method: return method(self,value)
+ if (not static):
+ self.__dict__[name] = value
+ else:
+ raise AttributeError("You cannot add attributes to %s" % self)
+
+def _swig_setattr(self,class_type,name,value):
+ return _swig_setattr_nondynamic(self,class_type,name,value,0)
+
+def _swig_getattr(self,class_type,name):
+ if (name == "thisown"): return self.this.own()
+ method = class_type.__swig_getmethods__.get(name,None)
+ if method: return method(self)
+ raise AttributeError(name)
+
+def _swig_repr(self):
+ try: strthis = "proxy of " + self.this.__repr__()
+ except: strthis = ""
+ return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
+
+try:
+ _object = object
+ _newclass = 1
+except AttributeError:
+ class _object : pass
+ _newclass = 0
+
+
+class Config(_object):
+ """Proxy of C Config struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Config, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Config, name)
+ def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined")
+ __repr__ = _swig_repr
+ __swig_destroy__ = _sphinxbase.delete_Config
+ __del__ = lambda self : None;
+ def set_boolean(self, *args):
+ """set_boolean(Config self, char const * key, bool val)"""
+ return _sphinxbase.Config_set_boolean(self, *args)
+
+ def set_int(self, *args):
+ """set_int(Config self, char const * key, int val)"""
+ return _sphinxbase.Config_set_int(self, *args)
+
+ def set_float(self, *args):
+ """set_float(Config self, char const * key, double val)"""
+ return _sphinxbase.Config_set_float(self, *args)
+
+ def set_string(self, *args):
+ """set_string(Config self, char const * key, char const * val)"""
+ return _sphinxbase.Config_set_string(self, *args)
+
+ def set_string_extra(self, *args):
+ """set_string_extra(Config self, char const * key, char const * val)"""
+ return _sphinxbase.Config_set_string_extra(self, *args)
+
+ def exists(self, *args):
+ """exists(Config self, char const * key) -> bool"""
+ return _sphinxbase.Config_exists(self, *args)
+
+ def get_boolean(self, *args):
+ """get_boolean(Config self, char const * key) -> bool"""
+ return _sphinxbase.Config_get_boolean(self, *args)
+
+ def get_int(self, *args):
+ """get_int(Config self, char const * key) -> int"""
+ return _sphinxbase.Config_get_int(self, *args)
+
+ def get_float(self, *args):
+ """get_float(Config self, char const * key) -> double"""
+ return _sphinxbase.Config_get_float(self, *args)
+
+ def get_string(self, *args):
+ """get_string(Config self, char const * key) -> char const *"""
+ return _sphinxbase.Config_get_string(self, *args)
+
+Config_swigregister = _sphinxbase.Config_swigregister
+Config_swigregister(Config)
+
+class FrontEnd(_object):
+ """Proxy of C FrontEnd struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, FrontEnd, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, FrontEnd, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """__init__(FrontEnd self, fe_t * ptr) -> FrontEnd"""
+ this = _sphinxbase.new_FrontEnd(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_FrontEnd
+ __del__ = lambda self : None;
+ def output_size(self):
+ """output_size(FrontEnd self) -> int"""
+ return _sphinxbase.FrontEnd_output_size(self)
+
+ def start_utt(self):
+ """start_utt(FrontEnd self)"""
+ return _sphinxbase.FrontEnd_start_utt(self)
+
+ def process_utt(self, *args):
+ """process_utt(FrontEnd self, int16 const * spch, size_t nsamps, mfcc_t *** cep_block) -> int32"""
+ return _sphinxbase.FrontEnd_process_utt(self, *args)
+
+ def end_utt(self, *args):
+ """end_utt(FrontEnd self, mfcc_t * out_cepvector) -> int32"""
+ return _sphinxbase.FrontEnd_end_utt(self, *args)
+
+FrontEnd_swigregister = _sphinxbase.FrontEnd_swigregister
+FrontEnd_swigregister(FrontEnd)
+
+class Feature(_object):
+ """Proxy of C Feature struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Feature, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Feature, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """__init__(Feature self, feat_t * ptr) -> Feature"""
+ this = _sphinxbase.new_Feature(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_Feature
+ __del__ = lambda self : None;
+Feature_swigregister = _sphinxbase.Feature_swigregister
+Feature_swigregister(Feature)
+
+class FsgModel(_object):
+ """Proxy of C FsgModel struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, FsgModel, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, FsgModel, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """
+ __init__(FsgModel self, char const * name, LogMath logmath, float lw, int32 n) -> FsgModel
+ __init__(FsgModel self, fsg_model_t * ptr) -> FsgModel
+ __init__(FsgModel self, char const * path, LogMath logmath, float lw) -> FsgModel
+ """
+ this = _sphinxbase.new_FsgModel(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_FsgModel
+ __del__ = lambda self : None;
+ def word_id(self, *args):
+ """word_id(FsgModel self, char const * word) -> int"""
+ return _sphinxbase.FsgModel_word_id(self, *args)
+
+ def word_add(self, *args):
+ """word_add(FsgModel self, char const * word) -> int"""
+ return _sphinxbase.FsgModel_word_add(self, *args)
+
+ def trans_add(self, *args):
+ """trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid)"""
+ return _sphinxbase.FsgModel_trans_add(self, *args)
+
+ def null_trans_add(self, *args):
+ """null_trans_add(FsgModel self, int32 src, int32 dst, int32 logp) -> int32"""
+ return _sphinxbase.FsgModel_null_trans_add(self, *args)
+
+ def tag_trans_add(self, *args):
+ """tag_trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid) -> int32"""
+ return _sphinxbase.FsgModel_tag_trans_add(self, *args)
+
+ def add_silence(self, *args):
+ """add_silence(FsgModel self, char const * silword, int32 state, float silprob) -> int"""
+ return _sphinxbase.FsgModel_add_silence(self, *args)
+
+ def add_alt(self, *args):
+ """add_alt(FsgModel self, char const * baseword, char const * altword) -> int"""
+ return _sphinxbase.FsgModel_add_alt(self, *args)
+
+ def writefile(self, *args):
+ """writefile(FsgModel self, char const * path)"""
+ return _sphinxbase.FsgModel_writefile(self, *args)
+
+FsgModel_swigregister = _sphinxbase.FsgModel_swigregister
+FsgModel_swigregister(FsgModel)
+
+class JsgfRule(_object):
+ """Proxy of C JsgfRule struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, JsgfRule, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, JsgfRule, name)
+ __repr__ = _swig_repr
+ def __init__(self):
+ """__init__(JsgfRule self) -> JsgfRule"""
+ this = _sphinxbase.new_JsgfRule()
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_JsgfRule
+ __del__ = lambda self : None;
+ def fromIter(*args):
+ """fromIter(jsgf_rule_iter_t * itor) -> JsgfRule"""
+ return _sphinxbase.JsgfRule_fromIter(*args)
+
+ if _newclass:fromIter = staticmethod(fromIter)
+ __swig_getmethods__["fromIter"] = lambda x: fromIter
+ def name(self):
+ """name(JsgfRule self) -> char const *"""
+ return _sphinxbase.JsgfRule_name(self)
+
+ def public(self):
+ """public(JsgfRule self) -> bool"""
+ return _sphinxbase.JsgfRule_public(self)
+
+JsgfRule_swigregister = _sphinxbase.JsgfRule_swigregister
+JsgfRule_swigregister(JsgfRule)
+
+def JsgfRule_fromIter(*args):
+ """JsgfRule_fromIter(jsgf_rule_iter_t * itor) -> JsgfRule"""
+ return _sphinxbase.JsgfRule_fromIter(*args)
+
+class NGramModel(_object):
+ """Proxy of C NGramModel struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NGramModel, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NGramModel, name)
+ __repr__ = _swig_repr
+ def fromIter(*args):
+ """fromIter(ngram_model_set_iter_t * itor) -> NGramModel"""
+ return _sphinxbase.NGramModel_fromIter(*args)
+
+ if _newclass:fromIter = staticmethod(fromIter)
+ __swig_getmethods__["fromIter"] = lambda x: fromIter
+ def __init__(self, *args):
+ """
+ __init__(NGramModel self, char const * path) -> NGramModel
+ __init__(NGramModel self, Config config, LogMath logmath, char const * path) -> NGramModel
+ """
+ this = _sphinxbase.new_NGramModel(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_NGramModel
+ __del__ = lambda self : None;
+ def write(self, *args):
+ """write(NGramModel self, char const * path, ngram_file_type_t ftype)"""
+ return _sphinxbase.NGramModel_write(self, *args)
+
+ def str_to_type(self, *args):
+ """str_to_type(NGramModel self, char const * str) -> ngram_file_type_t"""
+ return _sphinxbase.NGramModel_str_to_type(self, *args)
+
+ def type_to_str(self, *args):
+ """type_to_str(NGramModel self, int type) -> char const *"""
+ return _sphinxbase.NGramModel_type_to_str(self, *args)
+
+ def casefold(self, *args):
+ """casefold(NGramModel self, int kase)"""
+ return _sphinxbase.NGramModel_casefold(self, *args)
+
+ def size(self):
+ """size(NGramModel self) -> int32"""
+ return _sphinxbase.NGramModel_size(self)
+
+ def add_word(self, *args):
+ """add_word(NGramModel self, char const * word, float32 weight) -> int32"""
+ return _sphinxbase.NGramModel_add_word(self, *args)
+
+ def add_class(self, *args):
+ """add_class(NGramModel self, char const * c, float32 w, size_t n, float32 const * weights) -> int32"""
+ return _sphinxbase.NGramModel_add_class(self, *args)
+
+ def prob(self, *args):
+ """prob(NGramModel self, size_t n) -> int32"""
+ return _sphinxbase.NGramModel_prob(self, *args)
+
+NGramModel_swigregister = _sphinxbase.NGramModel_swigregister
+NGramModel_swigregister(NGramModel)
+
+def NGramModel_fromIter(*args):
+ """NGramModel_fromIter(ngram_model_set_iter_t * itor) -> NGramModel"""
+ return _sphinxbase.NGramModel_fromIter(*args)
+
+class LogMath(_object):
+ """Proxy of C LogMath struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, LogMath, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, LogMath, name)
+ __repr__ = _swig_repr
+ def __init__(self, *args):
+ """
+ __init__(LogMath self) -> LogMath
+ __init__(LogMath self, logmath_t * ptr) -> LogMath
+ """
+ this = _sphinxbase.new_LogMath(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_LogMath
+ __del__ = lambda self : None;
+ def exp(self, *args):
+ """exp(LogMath self, int prob) -> float64"""
+ return _sphinxbase.LogMath_exp(self, *args)
+
+LogMath_swigregister = _sphinxbase.LogMath_swigregister
+LogMath_swigregister(LogMath)
+
+class NGramModelSetIterator(_object):
+ """Proxy of C NGramModelSetIterator struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NGramModelSetIterator, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NGramModelSetIterator, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["ptr"] = _sphinxbase.NGramModelSetIterator_ptr_set
+ __swig_getmethods__["ptr"] = _sphinxbase.NGramModelSetIterator_ptr_get
+ if _newclass:ptr = _swig_property(_sphinxbase.NGramModelSetIterator_ptr_get, _sphinxbase.NGramModelSetIterator_ptr_set)
+ def __init__(self, *args):
+ """__init__(NGramModelSetIterator self, ngram_model_set_iter_t * ptr) -> NGramModelSetIterator"""
+ this = _sphinxbase.new_NGramModelSetIterator(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_NGramModelSetIterator
+ __del__ = lambda self : None;
+ def next(self):
+ """next(NGramModelSetIterator self) -> NGramModel"""
+ return _sphinxbase.NGramModelSetIterator_next(self)
+
+ def __next__(self):
+ """__next__(NGramModelSetIterator self) -> NGramModel"""
+ return _sphinxbase.NGramModelSetIterator___next__(self)
+
+NGramModelSetIterator_swigregister = _sphinxbase.NGramModelSetIterator_swigregister
+NGramModelSetIterator_swigregister(NGramModelSetIterator)
+
+class JsgfIterator(_object):
+ """Proxy of C JsgfIterator struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, JsgfIterator, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, JsgfIterator, name)
+ __repr__ = _swig_repr
+ __swig_setmethods__["ptr"] = _sphinxbase.JsgfIterator_ptr_set
+ __swig_getmethods__["ptr"] = _sphinxbase.JsgfIterator_ptr_get
+ if _newclass:ptr = _swig_property(_sphinxbase.JsgfIterator_ptr_get, _sphinxbase.JsgfIterator_ptr_set)
+ def __init__(self, *args):
+ """__init__(JsgfIterator self, jsgf_rule_iter_t * ptr) -> JsgfIterator"""
+ this = _sphinxbase.new_JsgfIterator(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_JsgfIterator
+ __del__ = lambda self : None;
+ def next(self):
+ """next(JsgfIterator self) -> JsgfRule"""
+ return _sphinxbase.JsgfIterator_next(self)
+
+ def __next__(self):
+ """__next__(JsgfIterator self) -> JsgfRule"""
+ return _sphinxbase.JsgfIterator___next__(self)
+
+JsgfIterator_swigregister = _sphinxbase.JsgfIterator_swigregister
+JsgfIterator_swigregister(JsgfIterator)
+
+class NGramModelSet(_object):
+ """Proxy of C NGramModelSet struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, NGramModelSet, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, NGramModelSet, name)
+ __repr__ = _swig_repr
+ def __iter__(self):
+ """__iter__(NGramModelSet self) -> NGramModelSetIterator"""
+ return _sphinxbase.NGramModelSet___iter__(self)
+
+ def __init__(self, *args):
+ """__init__(NGramModelSet self, Config config, LogMath logmath, char const * path) -> NGramModelSet"""
+ this = _sphinxbase.new_NGramModelSet(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_NGramModelSet
+ __del__ = lambda self : None;
+ def count(self):
+ """count(NGramModelSet self) -> int32"""
+ return _sphinxbase.NGramModelSet_count(self)
+
+ def add(self, *args):
+ """add(NGramModelSet self, NGramModel model, char const * name, float weight, bool reuse_widmap) -> NGramModel"""
+ return _sphinxbase.NGramModelSet_add(self, *args)
+
+ def select(self, *args):
+ """select(NGramModelSet self, char const * name) -> NGramModel"""
+ return _sphinxbase.NGramModelSet_select(self, *args)
+
+ def lookup(self, *args):
+ """lookup(NGramModelSet self, char const * name) -> NGramModel"""
+ return _sphinxbase.NGramModelSet_lookup(self, *args)
+
+ def current(self):
+ """current(NGramModelSet self) -> char const *"""
+ return _sphinxbase.NGramModelSet_current(self)
+
+NGramModelSet_swigregister = _sphinxbase.NGramModelSet_swigregister
+NGramModelSet_swigregister(NGramModelSet)
+
+class Jsgf(_object):
+ """Proxy of C Jsgf struct"""
+ __swig_setmethods__ = {}
+ __setattr__ = lambda self, name, value: _swig_setattr(self, Jsgf, name, value)
+ __swig_getmethods__ = {}
+ __getattr__ = lambda self, name: _swig_getattr(self, Jsgf, name)
+ __repr__ = _swig_repr
+ def __iter__(self):
+ """__iter__(Jsgf self) -> JsgfIterator"""
+ return _sphinxbase.Jsgf___iter__(self)
+
+ def __init__(self, *args):
+ """__init__(Jsgf self, char const * path) -> Jsgf"""
+ this = _sphinxbase.new_Jsgf(*args)
+ try: self.this.append(this)
+ except: self.this = this
+ __swig_destroy__ = _sphinxbase.delete_Jsgf
+ __del__ = lambda self : None;
+ def name(self):
+ """name(Jsgf self) -> char const *"""
+ return _sphinxbase.Jsgf_name(self)
+
+ def get_rule(self, *args):
+ """get_rule(Jsgf self, char const * name) -> JsgfRule"""
+ return _sphinxbase.Jsgf_get_rule(self, *args)
+
+ def build_fsg(self, *args):
+ """build_fsg(Jsgf self, JsgfRule rule, LogMath logmath, float lw) -> FsgModel"""
+ return _sphinxbase.Jsgf_build_fsg(self, *args)
+
+Jsgf_swigregister = _sphinxbase.Jsgf_swigregister
+Jsgf_swigregister(Jsgf)
+
+# This file is compatible with both classic and new-style classes.
+
+
diff --git a/sphinxbase-5prealpha/swig/python/sphinxbase_wrap.c b/sphinxbase-5prealpha/swig/python/sphinxbase_wrap.c
new file mode 100644
index 0000000..08ec7a9
--- /dev/null
+++ b/sphinxbase-5prealpha/swig/python/sphinxbase_wrap.c
@@ -0,0 +1,7365 @@
+/* ----------------------------------------------------------------------------
+ * This file was automatically generated by SWIG (http://www.swig.org).
+ * Version 2.0.11
+ *
+ * This file is not intended to be easily readable and contains a number of
+ * coding conventions designed to improve portability and efficiency. Do not make
+ * changes to this file unless you know what you are doing--modify the SWIG
+ * interface file instead.
+ * ----------------------------------------------------------------------------- */
+
+#include
+
+
+
+#ifndef __cplusplus
+typedef int bool;
+#define true 1
+#define false 0
+#endif
+
+#include
+#include
+#include
+#include
+#include
+#include
+
+typedef cmd_ln_t Config;
+typedef jsgf_t Jsgf;
+typedef jsgf_rule_t JsgfRule;
+typedef feat_t Feature;
+typedef fe_t FrontEnd;
+typedef fsg_model_t FsgModel;
+typedef logmath_t LogMath;
+typedef ngram_model_t NGramModel;
+typedef ngram_model_t NGramModelSet;
+
+
+#define SWIGPYTHON
+#define SWIG_PYTHON_DIRECTOR_NO_VTABLE
+
+/* -----------------------------------------------------------------------------
+ * This section contains generic SWIG labels for method/variable
+ * declarations/attributes, and other compiler dependent labels.
+ * ----------------------------------------------------------------------------- */
+
+/* template workaround for compilers that cannot correctly implement the C++ standard */
+#ifndef SWIGTEMPLATEDISAMBIGUATOR
+# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
+# define SWIGTEMPLATEDISAMBIGUATOR template
+# elif defined(__HP_aCC)
+/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */
+/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */
+# define SWIGTEMPLATEDISAMBIGUATOR template
+# else
+# define SWIGTEMPLATEDISAMBIGUATOR
+# endif
+#endif
+
+/* inline attribute */
+#ifndef SWIGINLINE
+# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
+# define SWIGINLINE inline
+# else
+# define SWIGINLINE
+# endif
+#endif
+
+/* attribute recognised by some compilers to avoid 'unused' warnings */
+#ifndef SWIGUNUSED
+# if defined(__GNUC__)
+# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
+# define SWIGUNUSED __attribute__ ((__unused__))
+# else
+# define SWIGUNUSED
+# endif
+# elif defined(__ICC)
+# define SWIGUNUSED __attribute__ ((__unused__))
+# else
+# define SWIGUNUSED
+# endif
+#endif
+
+#ifndef SWIG_MSC_UNSUPPRESS_4505
+# if defined(_MSC_VER)
+# pragma warning(disable : 4505) /* unreferenced local function has been removed */
+# endif
+#endif
+
+#ifndef SWIGUNUSEDPARM
+# ifdef __cplusplus
+# define SWIGUNUSEDPARM(p)
+# else
+# define SWIGUNUSEDPARM(p) p SWIGUNUSED
+# endif
+#endif
+
+/* internal SWIG method */
+#ifndef SWIGINTERN
+# define SWIGINTERN static SWIGUNUSED
+#endif
+
+/* internal inline SWIG method */
+#ifndef SWIGINTERNINLINE
+# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
+#endif
+
+/* exporting methods */
+#if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
+# ifndef GCC_HASCLASSVISIBILITY
+# define GCC_HASCLASSVISIBILITY
+# endif
+#endif
+
+#ifndef SWIGEXPORT
+# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# if defined(STATIC_LINKED)
+# define SWIGEXPORT
+# else
+# define SWIGEXPORT __declspec(dllexport)
+# endif
+# else
+# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
+# define SWIGEXPORT __attribute__ ((visibility("default")))
+# else
+# define SWIGEXPORT
+# endif
+# endif
+#endif
+
+/* calling conventions for Windows */
+#ifndef SWIGSTDCALL
+# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# define SWIGSTDCALL __stdcall
+# else
+# define SWIGSTDCALL
+# endif
+#endif
+
+/* Deal with Microsoft's attempt at deprecating C standard runtime functions */
+#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
+# define _CRT_SECURE_NO_DEPRECATE
+#endif
+
+/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */
+#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
+# define _SCL_SECURE_NO_DEPRECATE
+#endif
+
+
+
+#if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
+/* Use debug wrappers with the Python release dll */
+# undef _DEBUG
+# include
+# define _DEBUG
+#else
+# include
+#endif
+
+/* -----------------------------------------------------------------------------
+ * swigrun.swg
+ *
+ * This file contains generic C API SWIG runtime support for pointer
+ * type checking.
+ * ----------------------------------------------------------------------------- */
+
+/* This should only be incremented when either the layout of swig_type_info changes,
+ or for whatever reason, the runtime changes incompatibly */
+#define SWIG_RUNTIME_VERSION "4"
+
+/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
+#ifdef SWIG_TYPE_TABLE
+# define SWIG_QUOTE_STRING(x) #x
+# define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
+# define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
+#else
+# define SWIG_TYPE_TABLE_NAME
+#endif
+
+/*
+ You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
+ creating a static or dynamic library from the SWIG runtime code.
+ In 99.9% of the cases, SWIG just needs to declare them as 'static'.
+
+ But only do this if strictly necessary, ie, if you have problems
+ with your compiler or suchlike.
+*/
+
+#ifndef SWIGRUNTIME
+# define SWIGRUNTIME SWIGINTERN
+#endif
+
+#ifndef SWIGRUNTIMEINLINE
+# define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
+#endif
+
+/* Generic buffer size */
+#ifndef SWIG_BUFFER_SIZE
+# define SWIG_BUFFER_SIZE 1024
+#endif
+
+/* Flags for pointer conversions */
+#define SWIG_POINTER_DISOWN 0x1
+#define SWIG_CAST_NEW_MEMORY 0x2
+
+/* Flags for new pointer objects */
+#define SWIG_POINTER_OWN 0x1
+
+
+/*
+ Flags/methods for returning states.
+
+ The SWIG conversion methods, as ConvertPtr, return an integer
+ that tells if the conversion was successful or not. And if not,
+ an error code can be returned (see swigerrors.swg for the codes).
+
+ Use the following macros/flags to set or process the returning
+ states.
+
+ In old versions of SWIG, code such as the following was usually written:
+
+ if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
+ // success code
+ } else {
+ //fail code
+ }
+
+ Now you can be more explicit:
+
+ int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
+ if (SWIG_IsOK(res)) {
+ // success code
+ } else {
+ // fail code
+ }
+
+ which is the same really, but now you can also do
+
+ Type *ptr;
+ int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
+ if (SWIG_IsOK(res)) {
+ // success code
+ if (SWIG_IsNewObj(res) {
+ ...
+ delete *ptr;
+ } else {
+ ...
+ }
+ } else {
+ // fail code
+ }
+
+ I.e., now SWIG_ConvertPtr can return new objects and you can
+ identify the case and take care of the deallocation. Of course that
+ also requires SWIG_ConvertPtr to return new result values, such as
+
+ int SWIG_ConvertPtr(obj, ptr,...) {
+ if () {
+ if () {
+ *ptr = ;
+ return SWIG_NEWOBJ;
+ } else {
+ *ptr = ;
+ return SWIG_OLDOBJ;
+ }
+ } else {
+ return SWIG_BADOBJ;
+ }
+ }
+
+ Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
+ more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
+ SWIG errors code.
+
+ Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
+ allows to return the 'cast rank', for example, if you have this
+
+ int food(double)
+ int fooi(int);
+
+ and you call
+
+ food(1) // cast rank '1' (1 -> 1.0)
+ fooi(1) // cast rank '0'
+
+ just use the SWIG_AddCast()/SWIG_CheckState()
+*/
+
+#define SWIG_OK (0)
+#define SWIG_ERROR (-1)
+#define SWIG_IsOK(r) (r >= 0)
+#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
+
+/* The CastRankLimit says how many bits are used for the cast rank */
+#define SWIG_CASTRANKLIMIT (1 << 8)
+/* The NewMask denotes the object was created (using new/malloc) */
+#define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
+/* The TmpMask is for in/out typemaps that use temporal objects */
+#define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
+/* Simple returning values */
+#define SWIG_BADOBJ (SWIG_ERROR)
+#define SWIG_OLDOBJ (SWIG_OK)
+#define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
+#define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
+/* Check, add and del mask methods */
+#define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
+#define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
+#define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
+#define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
+#define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
+#define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
+
+/* Cast-Rank Mode */
+#if defined(SWIG_CASTRANK_MODE)
+# ifndef SWIG_TypeRank
+# define SWIG_TypeRank unsigned long
+# endif
+# ifndef SWIG_MAXCASTRANK /* Default cast allowed */
+# define SWIG_MAXCASTRANK (2)
+# endif
+# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
+# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
+SWIGINTERNINLINE int SWIG_AddCast(int r) {
+ return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
+}
+SWIGINTERNINLINE int SWIG_CheckState(int r) {
+ return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
+}
+#else /* no cast-rank mode */
+# define SWIG_AddCast(r) (r)
+# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
+#endif
+
+
+#include
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef void *(*swig_converter_func)(void *, int *);
+typedef struct swig_type_info *(*swig_dycast_func)(void **);
+
+/* Structure to store information on one type */
+typedef struct swig_type_info {
+ const char *name; /* mangled name of this type */
+ const char *str; /* human readable name of this type */
+ swig_dycast_func dcast; /* dynamic cast function down a hierarchy */
+ struct swig_cast_info *cast; /* linked list of types that can cast into this type */
+ void *clientdata; /* language specific type data */
+ int owndata; /* flag if the structure owns the clientdata */
+} swig_type_info;
+
+/* Structure to store a type and conversion function used for casting */
+typedef struct swig_cast_info {
+ swig_type_info *type; /* pointer to type that is equivalent to this type */
+ swig_converter_func converter; /* function to cast the void pointers */
+ struct swig_cast_info *next; /* pointer to next cast in linked list */
+ struct swig_cast_info *prev; /* pointer to the previous cast */
+} swig_cast_info;
+
+/* Structure used to store module information
+ * Each module generates one structure like this, and the runtime collects
+ * all of these structures and stores them in a circularly linked list.*/
+typedef struct swig_module_info {
+ swig_type_info **types; /* Array of pointers to swig_type_info structures that are in this module */
+ size_t size; /* Number of types in this module */
+ struct swig_module_info *next; /* Pointer to next element in circularly linked list */
+ swig_type_info **type_initial; /* Array of initially generated type structures */
+ swig_cast_info **cast_initial; /* Array of initially generated casting structures */
+ void *clientdata; /* Language specific module data */
+} swig_module_info;
+
+/*
+ Compare two type names skipping the space characters, therefore
+ "char*" == "char *" and "Class" == "Class", etc.
+
+ Return 0 when the two name types are equivalent, as in
+ strncmp, but skipping ' '.
+*/
+SWIGRUNTIME int
+SWIG_TypeNameComp(const char *f1, const char *l1,
+ const char *f2, const char *l2) {
+ for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) {
+ while ((*f1 == ' ') && (f1 != l1)) ++f1;
+ while ((*f2 == ' ') && (f2 != l2)) ++f2;
+ if (*f1 != *f2) return (*f1 > *f2) ? 1 : -1;
+ }
+ return (int)((l1 - f1) - (l2 - f2));
+}
+
+/*
+ Check type equivalence in a name list like ||...
+ Return 0 if equal, -1 if nb < tb, 1 if nb > tb
+*/
+SWIGRUNTIME int
+SWIG_TypeCmp(const char *nb, const char *tb) {
+ int equiv = 1;
+ const char* te = tb + strlen(tb);
+ const char* ne = nb;
+ while (equiv != 0 && *ne) {
+ for (nb = ne; *ne; ++ne) {
+ if (*ne == '|') break;
+ }
+ equiv = SWIG_TypeNameComp(nb, ne, tb, te);
+ if (*ne) ++ne;
+ }
+ return equiv;
+}
+
+/*
+ Check type equivalence in a name list like ||...
+ Return 0 if not equal, 1 if equal
+*/
+SWIGRUNTIME int
+SWIG_TypeEquiv(const char *nb, const char *tb) {
+ return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0;
+}
+
+/*
+ Check the typename
+*/
+SWIGRUNTIME swig_cast_info *
+SWIG_TypeCheck(const char *c, swig_type_info *ty) {
+ if (ty) {
+ swig_cast_info *iter = ty->cast;
+ while (iter) {
+ if (strcmp(iter->type->name, c) == 0) {
+ if (iter == ty->cast)
+ return iter;
+ /* Move iter to the top of the linked list */
+ iter->prev->next = iter->next;
+ if (iter->next)
+ iter->next->prev = iter->prev;
+ iter->next = ty->cast;
+ iter->prev = 0;
+ if (ty->cast) ty->cast->prev = iter;
+ ty->cast = iter;
+ return iter;
+ }
+ iter = iter->next;
+ }
+ }
+ return 0;
+}
+
+/*
+ Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
+*/
+SWIGRUNTIME swig_cast_info *
+SWIG_TypeCheckStruct(swig_type_info *from, swig_type_info *ty) {
+ if (ty) {
+ swig_cast_info *iter = ty->cast;
+ while (iter) {
+ if (iter->type == from) {
+ if (iter == ty->cast)
+ return iter;
+ /* Move iter to the top of the linked list */
+ iter->prev->next = iter->next;
+ if (iter->next)
+ iter->next->prev = iter->prev;
+ iter->next = ty->cast;
+ iter->prev = 0;
+ if (ty->cast) ty->cast->prev = iter;
+ ty->cast = iter;
+ return iter;
+ }
+ iter = iter->next;
+ }
+ }
+ return 0;
+}
+
+/*
+ Cast a pointer up an inheritance hierarchy
+*/
+SWIGRUNTIMEINLINE void *
+SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
+ return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
+}
+
+/*
+ Dynamic pointer casting. Down an inheritance hierarchy
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) {
+ swig_type_info *lastty = ty;
+ if (!ty || !ty->dcast) return ty;
+ while (ty && (ty->dcast)) {
+ ty = (*ty->dcast)(ptr);
+ if (ty) lastty = ty;
+ }
+ return lastty;
+}
+
+/*
+ Return the name associated with this type
+*/
+SWIGRUNTIMEINLINE const char *
+SWIG_TypeName(const swig_type_info *ty) {
+ return ty->name;
+}
+
+/*
+ Return the pretty name associated with this type,
+ that is an unmangled type name in a form presentable to the user.
+*/
+SWIGRUNTIME const char *
+SWIG_TypePrettyName(const swig_type_info *type) {
+ /* The "str" field contains the equivalent pretty names of the
+ type, separated by vertical-bar characters. We choose
+ to print the last name, as it is often (?) the most
+ specific. */
+ if (!type) return NULL;
+ if (type->str != NULL) {
+ const char *last_name = type->str;
+ const char *s;
+ for (s = type->str; *s; s++)
+ if (*s == '|') last_name = s+1;
+ return last_name;
+ }
+ else
+ return type->name;
+}
+
+/*
+ Set the clientdata field for a type
+*/
+SWIGRUNTIME void
+SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
+ swig_cast_info *cast = ti->cast;
+ /* if (ti->clientdata == clientdata) return; */
+ ti->clientdata = clientdata;
+
+ while (cast) {
+ if (!cast->converter) {
+ swig_type_info *tc = cast->type;
+ if (!tc->clientdata) {
+ SWIG_TypeClientData(tc, clientdata);
+ }
+ }
+ cast = cast->next;
+ }
+}
+SWIGRUNTIME void
+SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
+ SWIG_TypeClientData(ti, clientdata);
+ ti->owndata = 1;
+}
+
+/*
+ Search for a swig_type_info structure only by mangled name
+ Search is a O(log #types)
+
+ We start searching at module start, and finish searching when start == end.
+ Note: if start == end at the beginning of the function, we go all the way around
+ the circular list.
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_MangledTypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
+ const char *name) {
+ swig_module_info *iter = start;
+ do {
+ if (iter->size) {
+ register size_t l = 0;
+ register size_t r = iter->size - 1;
+ do {
+ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
+ register size_t i = (l + r) >> 1;
+ const char *iname = iter->types[i]->name;
+ if (iname) {
+ register int compare = strcmp(name, iname);
+ if (compare == 0) {
+ return iter->types[i];
+ } else if (compare < 0) {
+ if (i) {
+ r = i - 1;
+ } else {
+ break;
+ }
+ } else if (compare > 0) {
+ l = i + 1;
+ }
+ } else {
+ break; /* should never happen */
+ }
+ } while (l <= r);
+ }
+ iter = iter->next;
+ } while (iter != end);
+ return 0;
+}
+
+/*
+ Search for a swig_type_info structure for either a mangled name or a human readable name.
+ It first searches the mangled names of the types, which is a O(log #types)
+ If a type is not found it then searches the human readable names, which is O(#types).
+
+ We start searching at module start, and finish searching when start == end.
+ Note: if start == end at the beginning of the function, we go all the way around
+ the circular list.
+*/
+SWIGRUNTIME swig_type_info *
+SWIG_TypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
+ const char *name) {
+ /* STEP 1: Search the name field using binary search */
+ swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
+ if (ret) {
+ return ret;
+ } else {
+ /* STEP 2: If the type hasn't been found, do a complete search
+ of the str field (the human readable name) */
+ swig_module_info *iter = start;
+ do {
+ register size_t i = 0;
+ for (; i < iter->size; ++i) {
+ if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
+ return iter->types[i];
+ }
+ iter = iter->next;
+ } while (iter != end);
+ }
+
+ /* neither found a match */
+ return 0;
+}
+
+/*
+ Pack binary data into a string
+*/
+SWIGRUNTIME char *
+SWIG_PackData(char *c, void *ptr, size_t sz) {
+ static const char hex[17] = "0123456789abcdef";
+ register const unsigned char *u = (unsigned char *) ptr;
+ register const unsigned char *eu = u + sz;
+ for (; u != eu; ++u) {
+ register unsigned char uu = *u;
+ *(c++) = hex[(uu & 0xf0) >> 4];
+ *(c++) = hex[uu & 0xf];
+ }
+ return c;
+}
+
+/*
+ Unpack binary data from a string
+*/
+SWIGRUNTIME const char *
+SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
+ register unsigned char *u = (unsigned char *) ptr;
+ register const unsigned char *eu = u + sz;
+ for (; u != eu; ++u) {
+ register char d = *(c++);
+ register unsigned char uu;
+ if ((d >= '0') && (d <= '9'))
+ uu = ((d - '0') << 4);
+ else if ((d >= 'a') && (d <= 'f'))
+ uu = ((d - ('a'-10)) << 4);
+ else
+ return (char *) 0;
+ d = *(c++);
+ if ((d >= '0') && (d <= '9'))
+ uu |= (d - '0');
+ else if ((d >= 'a') && (d <= 'f'))
+ uu |= (d - ('a'-10));
+ else
+ return (char *) 0;
+ *u = uu;
+ }
+ return c;
+}
+
+/*
+ Pack 'void *' into a string buffer.
+*/
+SWIGRUNTIME char *
+SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) {
+ char *r = buff;
+ if ((2*sizeof(void *) + 2) > bsz) return 0;
+ *(r++) = '_';
+ r = SWIG_PackData(r,&ptr,sizeof(void *));
+ if (strlen(name) + 1 > (bsz - (r - buff))) return 0;
+ strcpy(r,name);
+ return buff;
+}
+
+SWIGRUNTIME const char *
+SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) {
+ if (*c != '_') {
+ if (strcmp(c,"NULL") == 0) {
+ *ptr = (void *) 0;
+ return name;
+ } else {
+ return 0;
+ }
+ }
+ return SWIG_UnpackData(++c,ptr,sizeof(void *));
+}
+
+SWIGRUNTIME char *
+SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) {
+ char *r = buff;
+ size_t lname = (name ? strlen(name) : 0);
+ if ((2*sz + 2 + lname) > bsz) return 0;
+ *(r++) = '_';
+ r = SWIG_PackData(r,ptr,sz);
+ if (lname) {
+ strncpy(r,name,lname+1);
+ } else {
+ *r = 0;
+ }
+ return buff;
+}
+
+SWIGRUNTIME const char *
+SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
+ if (*c != '_') {
+ if (strcmp(c,"NULL") == 0) {
+ memset(ptr,0,sz);
+ return name;
+ } else {
+ return 0;
+ }
+ }
+ return SWIG_UnpackData(++c,ptr,sz);
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+/* Errors in SWIG */
+#define SWIG_UnknownError -1
+#define SWIG_IOError -2
+#define SWIG_RuntimeError -3
+#define SWIG_IndexError -4
+#define SWIG_TypeError -5
+#define SWIG_DivisionByZero -6
+#define SWIG_OverflowError -7
+#define SWIG_SyntaxError -8
+#define SWIG_ValueError -9
+#define SWIG_SystemError -10
+#define SWIG_AttributeError -11
+#define SWIG_MemoryError -12
+#define SWIG_NullReferenceError -13
+
+
+
+/* Compatibility macros for Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+
+#define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
+#define PyInt_Check(x) PyLong_Check(x)
+#define PyInt_AsLong(x) PyLong_AsLong(x)
+#define PyInt_FromLong(x) PyLong_FromLong(x)
+#define PyInt_FromSize_t(x) PyLong_FromSize_t(x)
+#define PyString_Check(name) PyBytes_Check(name)
+#define PyString_FromString(x) PyUnicode_FromString(x)
+#define PyString_Format(fmt, args) PyUnicode_Format(fmt, args)
+#define PyString_AsString(str) PyBytes_AsString(str)
+#define PyString_Size(str) PyBytes_Size(str)
+#define PyString_InternFromString(key) PyUnicode_InternFromString(key)
+#define Py_TPFLAGS_HAVE_CLASS Py_TPFLAGS_BASETYPE
+#define PyString_AS_STRING(x) PyUnicode_AS_STRING(x)
+#define _PyLong_FromSsize_t(x) PyLong_FromSsize_t(x)
+
+#endif
+
+#ifndef Py_TYPE
+# define Py_TYPE(op) ((op)->ob_type)
+#endif
+
+/* SWIG APIs for compatibility of both Python 2 & 3 */
+
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_Python_str_FromFormat PyUnicode_FromFormat
+#else
+# define SWIG_Python_str_FromFormat PyString_FromFormat
+#endif
+
+
+/* Warning: This function will allocate a new string in Python 3,
+ * so please call SWIG_Python_str_DelForPy3(x) to free the space.
+ */
+SWIGINTERN char*
+SWIG_Python_str_AsChar(PyObject *str)
+{
+#if PY_VERSION_HEX >= 0x03000000
+ char *cstr;
+ char *newstr;
+ Py_ssize_t len;
+ str = PyUnicode_AsUTF8String(str);
+ PyBytes_AsStringAndSize(str, &cstr, &len);
+ newstr = (char *) malloc(len+1);
+ memcpy(newstr, cstr, len+1);
+ Py_XDECREF(str);
+ return newstr;
+#else
+ return PyString_AsString(str);
+#endif
+}
+
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_Python_str_DelForPy3(x) free( (void*) (x) )
+#else
+# define SWIG_Python_str_DelForPy3(x)
+#endif
+
+
+SWIGINTERN PyObject*
+SWIG_Python_str_FromChar(const char *c)
+{
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_FromString(c);
+#else
+ return PyString_FromString(c);
+#endif
+}
+
+/* Add PyOS_snprintf for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
+# define PyOS_snprintf _snprintf
+# else
+# define PyOS_snprintf snprintf
+# endif
+#endif
+
+/* A crude PyString_FromFormat implementation for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+
+#ifndef SWIG_PYBUFFER_SIZE
+# define SWIG_PYBUFFER_SIZE 1024
+#endif
+
+static PyObject *
+PyString_FromFormat(const char *fmt, ...) {
+ va_list ap;
+ char buf[SWIG_PYBUFFER_SIZE * 2];
+ int res;
+ va_start(ap, fmt);
+ res = vsnprintf(buf, sizeof(buf), fmt, ap);
+ va_end(ap);
+ return (res < 0 || res >= (int)sizeof(buf)) ? 0 : PyString_FromString(buf);
+}
+#endif
+
+/* Add PyObject_Del for old Pythons */
+#if PY_VERSION_HEX < 0x01060000
+# define PyObject_Del(op) PyMem_DEL((op))
+#endif
+#ifndef PyObject_DEL
+# define PyObject_DEL PyObject_Del
+#endif
+
+/* A crude PyExc_StopIteration exception for old Pythons */
+#if PY_VERSION_HEX < 0x02020000
+# ifndef PyExc_StopIteration
+# define PyExc_StopIteration PyExc_RuntimeError
+# endif
+# ifndef PyObject_GenericGetAttr
+# define PyObject_GenericGetAttr 0
+# endif
+#endif
+
+/* Py_NotImplemented is defined in 2.1 and up. */
+#if PY_VERSION_HEX < 0x02010000
+# ifndef Py_NotImplemented
+# define Py_NotImplemented PyExc_RuntimeError
+# endif
+#endif
+
+/* A crude PyString_AsStringAndSize implementation for old Pythons */
+#if PY_VERSION_HEX < 0x02010000
+# ifndef PyString_AsStringAndSize
+# define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
+# endif
+#endif
+
+/* PySequence_Size for old Pythons */
+#if PY_VERSION_HEX < 0x02000000
+# ifndef PySequence_Size
+# define PySequence_Size PySequence_Length
+# endif
+#endif
+
+/* PyBool_FromLong for old Pythons */
+#if PY_VERSION_HEX < 0x02030000
+static
+PyObject *PyBool_FromLong(long ok)
+{
+ PyObject *result = ok ? Py_True : Py_False;
+ Py_INCREF(result);
+ return result;
+}
+#endif
+
+/* Py_ssize_t for old Pythons */
+/* This code is as recommended by: */
+/* http://www.python.org/dev/peps/pep-0353/#conversion-guidelines */
+#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
+typedef int Py_ssize_t;
+# define PY_SSIZE_T_MAX INT_MAX
+# define PY_SSIZE_T_MIN INT_MIN
+typedef inquiry lenfunc;
+typedef intargfunc ssizeargfunc;
+typedef intintargfunc ssizessizeargfunc;
+typedef intobjargproc ssizeobjargproc;
+typedef intintobjargproc ssizessizeobjargproc;
+typedef getreadbufferproc readbufferproc;
+typedef getwritebufferproc writebufferproc;
+typedef getsegcountproc segcountproc;
+typedef getcharbufferproc charbufferproc;
+static long PyNumber_AsSsize_t (PyObject *x, void *SWIGUNUSEDPARM(exc))
+{
+ long result = 0;
+ PyObject *i = PyNumber_Int(x);
+ if (i) {
+ result = PyInt_AsLong(i);
+ Py_DECREF(i);
+ }
+ return result;
+}
+#endif
+
+#if PY_VERSION_HEX < 0x02050000
+#define PyInt_FromSize_t(x) PyInt_FromLong((long)x)
+#endif
+
+#if PY_VERSION_HEX < 0x02040000
+#define Py_VISIT(op) \
+ do { \
+ if (op) { \
+ int vret = visit((op), arg); \
+ if (vret) \
+ return vret; \
+ } \
+ } while (0)
+#endif
+
+#if PY_VERSION_HEX < 0x02030000
+typedef struct {
+ PyTypeObject type;
+ PyNumberMethods as_number;
+ PyMappingMethods as_mapping;
+ PySequenceMethods as_sequence;
+ PyBufferProcs as_buffer;
+ PyObject *name, *slots;
+} PyHeapTypeObject;
+#endif
+
+#if PY_VERSION_HEX < 0x02030000
+typedef destructor freefunc;
+#endif
+
+#if ((PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION > 6) || \
+ (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION > 0) || \
+ (PY_MAJOR_VERSION > 3))
+# define SWIGPY_USE_CAPSULE
+# define SWIGPY_CAPSULE_NAME ((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION ".type_pointer_capsule" SWIG_TYPE_TABLE_NAME)
+#endif
+
+#if PY_VERSION_HEX < 0x03020000
+#define PyDescr_TYPE(x) (((PyDescrObject *)(x))->d_type)
+#define PyDescr_NAME(x) (((PyDescrObject *)(x))->d_name)
+#endif
+
+/* -----------------------------------------------------------------------------
+ * error manipulation
+ * ----------------------------------------------------------------------------- */
+
+SWIGRUNTIME PyObject*
+SWIG_Python_ErrorType(int code) {
+ PyObject* type = 0;
+ switch(code) {
+ case SWIG_MemoryError:
+ type = PyExc_MemoryError;
+ break;
+ case SWIG_IOError:
+ type = PyExc_IOError;
+ break;
+ case SWIG_RuntimeError:
+ type = PyExc_RuntimeError;
+ break;
+ case SWIG_IndexError:
+ type = PyExc_IndexError;
+ break;
+ case SWIG_TypeError:
+ type = PyExc_TypeError;
+ break;
+ case SWIG_DivisionByZero:
+ type = PyExc_ZeroDivisionError;
+ break;
+ case SWIG_OverflowError:
+ type = PyExc_OverflowError;
+ break;
+ case SWIG_SyntaxError:
+ type = PyExc_SyntaxError;
+ break;
+ case SWIG_ValueError:
+ type = PyExc_ValueError;
+ break;
+ case SWIG_SystemError:
+ type = PyExc_SystemError;
+ break;
+ case SWIG_AttributeError:
+ type = PyExc_AttributeError;
+ break;
+ default:
+ type = PyExc_RuntimeError;
+ }
+ return type;
+}
+
+
+SWIGRUNTIME void
+SWIG_Python_AddErrorMsg(const char* mesg)
+{
+ PyObject *type = 0;
+ PyObject *value = 0;
+ PyObject *traceback = 0;
+
+ if (PyErr_Occurred()) PyErr_Fetch(&type, &value, &traceback);
+ if (value) {
+ char *tmp;
+ PyObject *old_str = PyObject_Str(value);
+ PyErr_Clear();
+ Py_XINCREF(type);
+
+ PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg);
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(old_str);
+ Py_DECREF(value);
+ } else {
+ PyErr_SetString(PyExc_RuntimeError, mesg);
+ }
+}
+
+#if defined(SWIG_PYTHON_NO_THREADS)
+# if defined(SWIG_PYTHON_THREADS)
+# undef SWIG_PYTHON_THREADS
+# endif
+#endif
+#if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
+# if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
+# if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
+# define SWIG_PYTHON_USE_GIL
+# endif
+# endif
+# if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
+# ifndef SWIG_PYTHON_INITIALIZE_THREADS
+# define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
+# endif
+# ifdef __cplusplus /* C++ code */
+ class SWIG_Python_Thread_Block {
+ bool status;
+ PyGILState_STATE state;
+ public:
+ void end() { if (status) { PyGILState_Release(state); status = false;} }
+ SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
+ ~SWIG_Python_Thread_Block() { end(); }
+ };
+ class SWIG_Python_Thread_Allow {
+ bool status;
+ PyThreadState *save;
+ public:
+ void end() { if (status) { PyEval_RestoreThread(save); status = false; }}
+ SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
+ ~SWIG_Python_Thread_Allow() { end(); }
+ };
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
+# define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
+# define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
+# else /* C code */
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
+# define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
+# define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
+# endif
+# else /* Old thread way, not implemented, user must provide it */
+# if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
+# define SWIG_PYTHON_INITIALIZE_THREADS
+# endif
+# if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
+# endif
+# if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
+# define SWIG_PYTHON_THREAD_END_BLOCK
+# endif
+# if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
+# endif
+# if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
+# define SWIG_PYTHON_THREAD_END_ALLOW
+# endif
+# endif
+#else /* No thread support */
+# define SWIG_PYTHON_INITIALIZE_THREADS
+# define SWIG_PYTHON_THREAD_BEGIN_BLOCK
+# define SWIG_PYTHON_THREAD_END_BLOCK
+# define SWIG_PYTHON_THREAD_BEGIN_ALLOW
+# define SWIG_PYTHON_THREAD_END_ALLOW
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Python API portion that goes into the runtime
+ * ----------------------------------------------------------------------------- */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Constant declarations
+ * ----------------------------------------------------------------------------- */
+
+/* Constant Types */
+#define SWIG_PY_POINTER 4
+#define SWIG_PY_BINARY 5
+
+/* Constant information structure */
+typedef struct swig_const_info {
+ int type;
+ char *name;
+ long lvalue;
+ double dvalue;
+ void *pvalue;
+ swig_type_info **ptype;
+} swig_const_info;
+
+
+/* -----------------------------------------------------------------------------
+ * Wrapper of PyInstanceMethod_New() used in Python 3
+ * It is exported to the generated module, used for -fastproxy
+ * ----------------------------------------------------------------------------- */
+#if PY_VERSION_HEX >= 0x03000000
+SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func)
+{
+ return PyInstanceMethod_New(func);
+}
+#else
+SWIGRUNTIME PyObject* SWIG_PyInstanceMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *SWIGUNUSEDPARM(func))
+{
+ return NULL;
+}
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+
+/* -----------------------------------------------------------------------------
+ * pyrun.swg
+ *
+ * This file contains the runtime support for Python modules
+ * and includes code for managing global variables and pointer
+ * type checking.
+ *
+ * ----------------------------------------------------------------------------- */
+
+/* Common SWIG API */
+
+/* for raw pointers */
+#define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
+#define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
+#define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
+
+#ifdef SWIGPYTHON_BUILTIN
+#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(self, ptr, type, flags)
+#else
+#define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
+#endif
+
+#define SWIG_InternalNewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(NULL, ptr, type, flags)
+
+#define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
+#define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
+#define swig_owntype int
+
+/* for raw packed data */
+#define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
+#define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
+
+/* for class or struct pointers */
+#define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
+#define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
+
+/* for C or C++ function pointers */
+#define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
+#define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(NULL, ptr, type, 0)
+
+/* for C++ member pointers, ie, member methods */
+#define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
+#define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
+
+
+/* Runtime API */
+
+#define SWIG_GetModule(clientdata) SWIG_Python_GetModule(clientdata)
+#define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
+#define SWIG_NewClientData(obj) SwigPyClientData_New(obj)
+
+#define SWIG_SetErrorObj SWIG_Python_SetErrorObj
+#define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
+#define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
+#define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
+#define SWIG_fail goto fail
+
+
+/* Runtime API implementation */
+
+/* Error manipulation */
+
+SWIGINTERN void
+SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) {
+ SWIG_PYTHON_THREAD_BEGIN_BLOCK;
+ PyErr_SetObject(errtype, obj);
+ Py_DECREF(obj);
+ SWIG_PYTHON_THREAD_END_BLOCK;
+}
+
+SWIGINTERN void
+SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) {
+ SWIG_PYTHON_THREAD_BEGIN_BLOCK;
+ PyErr_SetString(errtype, msg);
+ SWIG_PYTHON_THREAD_END_BLOCK;
+}
+
+#define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
+
+/* Set a constant value */
+
+#if defined(SWIGPYTHON_BUILTIN)
+
+SWIGINTERN void
+SwigPyBuiltin_AddPublicSymbol(PyObject *seq, const char *key) {
+ PyObject *s = PyString_InternFromString(key);
+ PyList_Append(seq, s);
+ Py_DECREF(s);
+}
+
+SWIGINTERN void
+SWIG_Python_SetConstant(PyObject *d, PyObject *public_interface, const char *name, PyObject *obj) {
+#if PY_VERSION_HEX < 0x02030000
+ PyDict_SetItemString(d, (char *)name, obj);
+#else
+ PyDict_SetItemString(d, name, obj);
+#endif
+ Py_DECREF(obj);
+ if (public_interface)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, name);
+}
+
+#else
+
+SWIGINTERN void
+SWIG_Python_SetConstant(PyObject *d, const char *name, PyObject *obj) {
+#if PY_VERSION_HEX < 0x02030000
+ PyDict_SetItemString(d, (char *)name, obj);
+#else
+ PyDict_SetItemString(d, name, obj);
+#endif
+ Py_DECREF(obj);
+}
+
+#endif
+
+/* Append a value to the result obj */
+
+SWIGINTERN PyObject*
+SWIG_Python_AppendOutput(PyObject* result, PyObject* obj) {
+#if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
+ if (!result) {
+ result = obj;
+ } else if (result == Py_None) {
+ Py_DECREF(result);
+ result = obj;
+ } else {
+ if (!PyList_Check(result)) {
+ PyObject *o2 = result;
+ result = PyList_New(1);
+ PyList_SetItem(result, 0, o2);
+ }
+ PyList_Append(result,obj);
+ Py_DECREF(obj);
+ }
+ return result;
+#else
+ PyObject* o2;
+ PyObject* o3;
+ if (!result) {
+ result = obj;
+ } else if (result == Py_None) {
+ Py_DECREF(result);
+ result = obj;
+ } else {
+ if (!PyTuple_Check(result)) {
+ o2 = result;
+ result = PyTuple_New(1);
+ PyTuple_SET_ITEM(result, 0, o2);
+ }
+ o3 = PyTuple_New(1);
+ PyTuple_SET_ITEM(o3, 0, obj);
+ o2 = result;
+ result = PySequence_Concat(o2, o3);
+ Py_DECREF(o2);
+ Py_DECREF(o3);
+ }
+ return result;
+#endif
+}
+
+/* Unpack the argument tuple */
+
+SWIGINTERN int
+SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t max, PyObject **objs)
+{
+ if (!args) {
+ if (!min && !max) {
+ return 1;
+ } else {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got none",
+ name, (min == max ? "" : "at least "), (int)min);
+ return 0;
+ }
+ }
+ if (!PyTuple_Check(args)) {
+ if (min <= 1 && max >= 1) {
+ register int i;
+ objs[0] = args;
+ for (i = 1; i < max; ++i) {
+ objs[i] = 0;
+ }
+ return 2;
+ }
+ PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
+ return 0;
+ } else {
+ register Py_ssize_t l = PyTuple_GET_SIZE(args);
+ if (l < min) {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
+ name, (min == max ? "" : "at least "), (int)min, (int)l);
+ return 0;
+ } else if (l > max) {
+ PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
+ name, (min == max ? "" : "at most "), (int)max, (int)l);
+ return 0;
+ } else {
+ register int i;
+ for (i = 0; i < l; ++i) {
+ objs[i] = PyTuple_GET_ITEM(args, i);
+ }
+ for (; l < max; ++l) {
+ objs[l] = 0;
+ }
+ return i + 1;
+ }
+ }
+}
+
+/* A functor is a function object with one single object argument */
+#if PY_VERSION_HEX >= 0x02020000
+#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
+#else
+#define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
+#endif
+
+/*
+ Helper for static pointer initialization for both C and C++ code, for example
+ static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
+*/
+#ifdef __cplusplus
+#define SWIG_STATIC_POINTER(var) var
+#else
+#define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
+#endif
+
+/* -----------------------------------------------------------------------------
+ * Pointer declarations
+ * ----------------------------------------------------------------------------- */
+
+/* Flags for new pointer objects */
+#define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
+#define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
+
+#define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
+
+#define SWIG_BUILTIN_TP_INIT (SWIG_POINTER_OWN << 2)
+#define SWIG_BUILTIN_INIT (SWIG_BUILTIN_TP_INIT | SWIG_POINTER_OWN)
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* How to access Py_None */
+#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
+# ifndef SWIG_PYTHON_NO_BUILD_NONE
+# ifndef SWIG_PYTHON_BUILD_NONE
+# define SWIG_PYTHON_BUILD_NONE
+# endif
+# endif
+#endif
+
+#ifdef SWIG_PYTHON_BUILD_NONE
+# ifdef Py_None
+# undef Py_None
+# define Py_None SWIG_Py_None()
+# endif
+SWIGRUNTIMEINLINE PyObject *
+_SWIG_Py_None(void)
+{
+ PyObject *none = Py_BuildValue((char*)"");
+ Py_DECREF(none);
+ return none;
+}
+SWIGRUNTIME PyObject *
+SWIG_Py_None(void)
+{
+ static PyObject *SWIG_STATIC_POINTER(none) = _SWIG_Py_None();
+ return none;
+}
+#endif
+
+/* The python void return value */
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Py_Void(void)
+{
+ PyObject *none = Py_None;
+ Py_INCREF(none);
+ return none;
+}
+
+/* SwigPyClientData */
+
+typedef struct {
+ PyObject *klass;
+ PyObject *newraw;
+ PyObject *newargs;
+ PyObject *destroy;
+ int delargs;
+ int implicitconv;
+ PyTypeObject *pytype;
+} SwigPyClientData;
+
+SWIGRUNTIMEINLINE int
+SWIG_Python_CheckImplicit(swig_type_info *ty)
+{
+ SwigPyClientData *data = (SwigPyClientData *)ty->clientdata;
+ return data ? data->implicitconv : 0;
+}
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Python_ExceptionType(swig_type_info *desc) {
+ SwigPyClientData *data = desc ? (SwigPyClientData *) desc->clientdata : 0;
+ PyObject *klass = data ? data->klass : 0;
+ return (klass ? klass : PyExc_RuntimeError);
+}
+
+
+SWIGRUNTIME SwigPyClientData *
+SwigPyClientData_New(PyObject* obj)
+{
+ if (!obj) {
+ return 0;
+ } else {
+ SwigPyClientData *data = (SwigPyClientData *)malloc(sizeof(SwigPyClientData));
+ /* the klass element */
+ data->klass = obj;
+ Py_INCREF(data->klass);
+ /* the newraw method and newargs arguments used to create a new raw instance */
+ if (PyClass_Check(obj)) {
+ data->newraw = 0;
+ data->newargs = obj;
+ Py_INCREF(obj);
+ } else {
+#if (PY_VERSION_HEX < 0x02020000)
+ data->newraw = 0;
+#else
+ data->newraw = PyObject_GetAttrString(data->klass, (char *)"__new__");
+#endif
+ if (data->newraw) {
+ Py_INCREF(data->newraw);
+ data->newargs = PyTuple_New(1);
+ PyTuple_SetItem(data->newargs, 0, obj);
+ } else {
+ data->newargs = obj;
+ }
+ Py_INCREF(data->newargs);
+ }
+ /* the destroy method, aka as the C++ delete method */
+ data->destroy = PyObject_GetAttrString(data->klass, (char *)"__swig_destroy__");
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ data->destroy = 0;
+ }
+ if (data->destroy) {
+ int flags;
+ Py_INCREF(data->destroy);
+ flags = PyCFunction_GET_FLAGS(data->destroy);
+#ifdef METH_O
+ data->delargs = !(flags & (METH_O));
+#else
+ data->delargs = 0;
+#endif
+ } else {
+ data->delargs = 0;
+ }
+ data->implicitconv = 0;
+ data->pytype = 0;
+ return data;
+ }
+}
+
+SWIGRUNTIME void
+SwigPyClientData_Del(SwigPyClientData *data) {
+ Py_XDECREF(data->newraw);
+ Py_XDECREF(data->newargs);
+ Py_XDECREF(data->destroy);
+}
+
+/* =============== SwigPyObject =====================*/
+
+typedef struct {
+ PyObject_HEAD
+ void *ptr;
+ swig_type_info *ty;
+ int own;
+ PyObject *next;
+#ifdef SWIGPYTHON_BUILTIN
+ PyObject *dict;
+#endif
+} SwigPyObject;
+
+SWIGRUNTIME PyObject *
+SwigPyObject_long(SwigPyObject *v)
+{
+ return PyLong_FromVoidPtr(v->ptr);
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_format(const char* fmt, SwigPyObject *v)
+{
+ PyObject *res = NULL;
+ PyObject *args = PyTuple_New(1);
+ if (args) {
+ if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) {
+ PyObject *ofmt = SWIG_Python_str_FromChar(fmt);
+ if (ofmt) {
+#if PY_VERSION_HEX >= 0x03000000
+ res = PyUnicode_Format(ofmt,args);
+#else
+ res = PyString_Format(ofmt,args);
+#endif
+ Py_DECREF(ofmt);
+ }
+ Py_DECREF(args);
+ }
+ }
+ return res;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_oct(SwigPyObject *v)
+{
+ return SwigPyObject_format("%o",v);
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_hex(SwigPyObject *v)
+{
+ return SwigPyObject_format("%x",v);
+}
+
+SWIGRUNTIME PyObject *
+#ifdef METH_NOARGS
+SwigPyObject_repr(SwigPyObject *v)
+#else
+SwigPyObject_repr(SwigPyObject *v, PyObject *args)
+#endif
+{
+ const char *name = SWIG_TypePrettyName(v->ty);
+ PyObject *repr = SWIG_Python_str_FromFormat("", (name ? name : "unknown"), (void *)v);
+ if (v->next) {
+# ifdef METH_NOARGS
+ PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next);
+# else
+ PyObject *nrep = SwigPyObject_repr((SwigPyObject *)v->next, args);
+# endif
+# if PY_VERSION_HEX >= 0x03000000
+ PyObject *joined = PyUnicode_Concat(repr, nrep);
+ Py_DecRef(repr);
+ Py_DecRef(nrep);
+ repr = joined;
+# else
+ PyString_ConcatAndDel(&repr,nrep);
+# endif
+ }
+ return repr;
+}
+
+SWIGRUNTIME int
+SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
+{
+ void *i = v->ptr;
+ void *j = w->ptr;
+ return (i < j) ? -1 : ((i > j) ? 1 : 0);
+}
+
+/* Added for Python 3.x, would it also be useful for Python 2.x? */
+SWIGRUNTIME PyObject*
+SwigPyObject_richcompare(SwigPyObject *v, SwigPyObject *w, int op)
+{
+ PyObject* res;
+ if( op != Py_EQ && op != Py_NE ) {
+ Py_INCREF(Py_NotImplemented);
+ return Py_NotImplemented;
+ }
+ res = PyBool_FromLong( (SwigPyObject_compare(v, w)==0) == (op == Py_EQ) ? 1 : 0);
+ return res;
+}
+
+
+SWIGRUNTIME PyTypeObject* SwigPyObject_TypeOnce(void);
+
+#ifdef SWIGPYTHON_BUILTIN
+static swig_type_info *SwigPyObject_stype = 0;
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_type(void) {
+ SwigPyClientData *cd;
+ assert(SwigPyObject_stype);
+ cd = (SwigPyClientData*) SwigPyObject_stype->clientdata;
+ assert(cd);
+ assert(cd->pytype);
+ return cd->pytype;
+}
+#else
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_type(void) {
+ static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyObject_TypeOnce();
+ return type;
+}
+#endif
+
+SWIGRUNTIMEINLINE int
+SwigPyObject_Check(PyObject *op) {
+#ifdef SWIGPYTHON_BUILTIN
+ PyTypeObject *target_tp = SwigPyObject_type();
+ if (PyType_IsSubtype(op->ob_type, target_tp))
+ return 1;
+ return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0);
+#else
+ return (Py_TYPE(op) == SwigPyObject_type())
+ || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0);
+#endif
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_New(void *ptr, swig_type_info *ty, int own);
+
+SWIGRUNTIME void
+SwigPyObject_dealloc(PyObject *v)
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+ PyObject *next = sobj->next;
+ if (sobj->own == SWIG_POINTER_OWN) {
+ swig_type_info *ty = sobj->ty;
+ SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
+ PyObject *destroy = data ? data->destroy : 0;
+ if (destroy) {
+ /* destroy is always a VARARGS method */
+ PyObject *res;
+ if (data->delargs) {
+ /* we need to create a temporary object to carry the destroy operation */
+ PyObject *tmp = SwigPyObject_New(sobj->ptr, ty, 0);
+ res = SWIG_Python_CallFunctor(destroy, tmp);
+ Py_DECREF(tmp);
+ } else {
+ PyCFunction meth = PyCFunction_GET_FUNCTION(destroy);
+ PyObject *mself = PyCFunction_GET_SELF(destroy);
+ res = ((*meth)(mself, v));
+ }
+ Py_XDECREF(res);
+ }
+#if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
+ else {
+ const char *name = SWIG_TypePrettyName(ty);
+ printf("swig/python detected a memory leak of type '%s', no destructor found.\n", (name ? name : "unknown"));
+ }
+#endif
+ }
+ Py_XDECREF(next);
+ PyObject_DEL(v);
+}
+
+SWIGRUNTIME PyObject*
+SwigPyObject_append(PyObject* v, PyObject* next)
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+#ifndef METH_O
+ PyObject *tmp = 0;
+ if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL;
+ next = tmp;
+#endif
+ if (!SwigPyObject_Check(next)) {
+ return NULL;
+ }
+ sobj->next = next;
+ Py_INCREF(next);
+ return SWIG_Py_Void();
+}
+
+SWIGRUNTIME PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_next(PyObject* v)
+#else
+SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *) v;
+ if (sobj->next) {
+ Py_INCREF(sobj->next);
+ return sobj->next;
+ } else {
+ return SWIG_Py_Void();
+ }
+}
+
+SWIGINTERN PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_disown(PyObject *v)
+#else
+SwigPyObject_disown(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ sobj->own = 0;
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject*
+#ifdef METH_NOARGS
+SwigPyObject_acquire(PyObject *v)
+#else
+SwigPyObject_acquire(PyObject* v, PyObject *SWIGUNUSEDPARM(args))
+#endif
+{
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ sobj->own = SWIG_POINTER_OWN;
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject*
+SwigPyObject_own(PyObject *v, PyObject *args)
+{
+ PyObject *val = 0;
+#if (PY_VERSION_HEX < 0x02020000)
+ if (!PyArg_ParseTuple(args,(char *)"|O:own",&val))
+#elif (PY_VERSION_HEX < 0x02050000)
+ if (!PyArg_UnpackTuple(args, (char *)"own", 0, 1, &val))
+#else
+ if (!PyArg_UnpackTuple(args, "own", 0, 1, &val))
+#endif
+ {
+ return NULL;
+ }
+ else
+ {
+ SwigPyObject *sobj = (SwigPyObject *)v;
+ PyObject *obj = PyBool_FromLong(sobj->own);
+ if (val) {
+#ifdef METH_NOARGS
+ if (PyObject_IsTrue(val)) {
+ SwigPyObject_acquire(v);
+ } else {
+ SwigPyObject_disown(v);
+ }
+#else
+ if (PyObject_IsTrue(val)) {
+ SwigPyObject_acquire(v,args);
+ } else {
+ SwigPyObject_disown(v,args);
+ }
+#endif
+ }
+ return obj;
+ }
+}
+
+#ifdef METH_O
+static PyMethodDef
+swigobject_methods[] = {
+ {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_NOARGS, (char *)"releases ownership of the pointer"},
+ {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_NOARGS, (char *)"acquires ownership of the pointer"},
+ {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
+ {(char *)"append", (PyCFunction)SwigPyObject_append, METH_O, (char *)"appends another 'this' object"},
+ {(char *)"next", (PyCFunction)SwigPyObject_next, METH_NOARGS, (char *)"returns the next 'this' object"},
+ {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_NOARGS, (char *)"returns object representation"},
+ {0, 0, 0, 0}
+};
+#else
+static PyMethodDef
+swigobject_methods[] = {
+ {(char *)"disown", (PyCFunction)SwigPyObject_disown, METH_VARARGS, (char *)"releases ownership of the pointer"},
+ {(char *)"acquire", (PyCFunction)SwigPyObject_acquire, METH_VARARGS, (char *)"aquires ownership of the pointer"},
+ {(char *)"own", (PyCFunction)SwigPyObject_own, METH_VARARGS, (char *)"returns/sets ownership of the pointer"},
+ {(char *)"append", (PyCFunction)SwigPyObject_append, METH_VARARGS, (char *)"appends another 'this' object"},
+ {(char *)"next", (PyCFunction)SwigPyObject_next, METH_VARARGS, (char *)"returns the next 'this' object"},
+ {(char *)"__repr__",(PyCFunction)SwigPyObject_repr, METH_VARARGS, (char *)"returns object representation"},
+ {0, 0, 0, 0}
+};
+#endif
+
+#if PY_VERSION_HEX < 0x02020000
+SWIGINTERN PyObject *
+SwigPyObject_getattr(SwigPyObject *sobj,char *name)
+{
+ return Py_FindMethod(swigobject_methods, (PyObject *)sobj, name);
+}
+#endif
+
+SWIGRUNTIME PyTypeObject*
+SwigPyObject_TypeOnce(void) {
+ static char swigobject_doc[] = "Swig object carries a C/C++ instance pointer";
+
+ static PyNumberMethods SwigPyObject_as_number = {
+ (binaryfunc)0, /*nb_add*/
+ (binaryfunc)0, /*nb_subtract*/
+ (binaryfunc)0, /*nb_multiply*/
+ /* nb_divide removed in Python 3 */
+#if PY_VERSION_HEX < 0x03000000
+ (binaryfunc)0, /*nb_divide*/
+#endif
+ (binaryfunc)0, /*nb_remainder*/
+ (binaryfunc)0, /*nb_divmod*/
+ (ternaryfunc)0,/*nb_power*/
+ (unaryfunc)0, /*nb_negative*/
+ (unaryfunc)0, /*nb_positive*/
+ (unaryfunc)0, /*nb_absolute*/
+ (inquiry)0, /*nb_nonzero*/
+ 0, /*nb_invert*/
+ 0, /*nb_lshift*/
+ 0, /*nb_rshift*/
+ 0, /*nb_and*/
+ 0, /*nb_xor*/
+ 0, /*nb_or*/
+#if PY_VERSION_HEX < 0x03000000
+ 0, /*nb_coerce*/
+#endif
+ (unaryfunc)SwigPyObject_long, /*nb_int*/
+#if PY_VERSION_HEX < 0x03000000
+ (unaryfunc)SwigPyObject_long, /*nb_long*/
+#else
+ 0, /*nb_reserved*/
+#endif
+ (unaryfunc)0, /*nb_float*/
+#if PY_VERSION_HEX < 0x03000000
+ (unaryfunc)SwigPyObject_oct, /*nb_oct*/
+ (unaryfunc)SwigPyObject_hex, /*nb_hex*/
+#endif
+#if PY_VERSION_HEX >= 0x03000000 /* 3.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index, nb_inplace_divide removed */
+#elif PY_VERSION_HEX >= 0x02050000 /* 2.5.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_index */
+#elif PY_VERSION_HEX >= 0x02020000 /* 2.2.0 */
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
+#elif PY_VERSION_HEX >= 0x02000000 /* 2.0.0 */
+ 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
+#endif
+ };
+
+ static PyTypeObject swigpyobject_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"SwigPyObject", /* tp_name */
+ sizeof(SwigPyObject), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor)SwigPyObject_dealloc, /* tp_dealloc */
+ 0, /* tp_print */
+#if PY_VERSION_HEX < 0x02020000
+ (getattrfunc)SwigPyObject_getattr, /* tp_getattr */
+#else
+ (getattrfunc)0, /* tp_getattr */
+#endif
+ (setattrfunc)0, /* tp_setattr */
+#if PY_VERSION_HEX >= 0x03000000
+ 0, /* tp_reserved in 3.0.1, tp_compare in 3.0.0 but not used */
+#else
+ (cmpfunc)SwigPyObject_compare, /* tp_compare */
+#endif
+ (reprfunc)SwigPyObject_repr, /* tp_repr */
+ &SwigPyObject_as_number, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ (hashfunc)0, /* tp_hash */
+ (ternaryfunc)0, /* tp_call */
+ 0, /* tp_str */
+ PyObject_GenericGetAttr, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ Py_TPFLAGS_DEFAULT, /* tp_flags */
+ swigobject_doc, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ (richcmpfunc)SwigPyObject_richcompare,/* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ swigobject_methods, /* tp_methods */
+ 0, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ 0, /* tp_new */
+ 0, /* tp_free */
+ 0, /* tp_is_gc */
+ 0, /* tp_bases */
+ 0, /* tp_mro */
+ 0, /* tp_cache */
+ 0, /* tp_subclasses */
+ 0, /* tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ swigpyobject_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ swigpyobject_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&swigpyobject_type) < 0)
+ return NULL;
+#endif
+ }
+ return &swigpyobject_type;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyObject_New(void *ptr, swig_type_info *ty, int own)
+{
+ SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type());
+ if (sobj) {
+ sobj->ptr = ptr;
+ sobj->ty = ty;
+ sobj->own = own;
+ sobj->next = 0;
+ }
+ return (PyObject *)sobj;
+}
+
+/* -----------------------------------------------------------------------------
+ * Implements a simple Swig Packed type, and use it instead of string
+ * ----------------------------------------------------------------------------- */
+
+typedef struct {
+ PyObject_HEAD
+ void *pack;
+ swig_type_info *ty;
+ size_t size;
+} SwigPyPacked;
+
+SWIGRUNTIME int
+SwigPyPacked_print(SwigPyPacked *v, FILE *fp, int SWIGUNUSEDPARM(flags))
+{
+ char result[SWIG_BUFFER_SIZE];
+ fputs("pack, v->size, 0, sizeof(result))) {
+ fputs("at ", fp);
+ fputs(result, fp);
+ }
+ fputs(v->ty->name,fp);
+ fputs(">", fp);
+ return 0;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_repr(SwigPyPacked *v)
+{
+ char result[SWIG_BUFFER_SIZE];
+ if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))) {
+ return SWIG_Python_str_FromFormat("", result, v->ty->name);
+ } else {
+ return SWIG_Python_str_FromFormat("", v->ty->name);
+ }
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_str(SwigPyPacked *v)
+{
+ char result[SWIG_BUFFER_SIZE];
+ if (SWIG_PackDataName(result, v->pack, v->size, 0, sizeof(result))){
+ return SWIG_Python_str_FromFormat("%s%s", result, v->ty->name);
+ } else {
+ return SWIG_Python_str_FromChar(v->ty->name);
+ }
+}
+
+SWIGRUNTIME int
+SwigPyPacked_compare(SwigPyPacked *v, SwigPyPacked *w)
+{
+ size_t i = v->size;
+ size_t j = w->size;
+ int s = (i < j) ? -1 : ((i > j) ? 1 : 0);
+ return s ? s : strncmp((char *)v->pack, (char *)w->pack, 2*v->size);
+}
+
+SWIGRUNTIME PyTypeObject* SwigPyPacked_TypeOnce(void);
+
+SWIGRUNTIME PyTypeObject*
+SwigPyPacked_type(void) {
+ static PyTypeObject *SWIG_STATIC_POINTER(type) = SwigPyPacked_TypeOnce();
+ return type;
+}
+
+SWIGRUNTIMEINLINE int
+SwigPyPacked_Check(PyObject *op) {
+ return ((op)->ob_type == SwigPyPacked_TypeOnce())
+ || (strcmp((op)->ob_type->tp_name,"SwigPyPacked") == 0);
+}
+
+SWIGRUNTIME void
+SwigPyPacked_dealloc(PyObject *v)
+{
+ if (SwigPyPacked_Check(v)) {
+ SwigPyPacked *sobj = (SwigPyPacked *) v;
+ free(sobj->pack);
+ }
+ PyObject_DEL(v);
+}
+
+SWIGRUNTIME PyTypeObject*
+SwigPyPacked_TypeOnce(void) {
+ static char swigpacked_doc[] = "Swig object carries a C/C++ instance pointer";
+ static PyTypeObject swigpypacked_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX>=0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"SwigPyPacked", /* tp_name */
+ sizeof(SwigPyPacked), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor)SwigPyPacked_dealloc, /* tp_dealloc */
+ (printfunc)SwigPyPacked_print, /* tp_print */
+ (getattrfunc)0, /* tp_getattr */
+ (setattrfunc)0, /* tp_setattr */
+#if PY_VERSION_HEX>=0x03000000
+ 0, /* tp_reserved in 3.0.1 */
+#else
+ (cmpfunc)SwigPyPacked_compare, /* tp_compare */
+#endif
+ (reprfunc)SwigPyPacked_repr, /* tp_repr */
+ 0, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ (hashfunc)0, /* tp_hash */
+ (ternaryfunc)0, /* tp_call */
+ (reprfunc)SwigPyPacked_str, /* tp_str */
+ PyObject_GenericGetAttr, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ Py_TPFLAGS_DEFAULT, /* tp_flags */
+ swigpacked_doc, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0, /* tp_iter */
+ 0, /* tp_iternext */
+ 0, /* tp_methods */
+ 0, /* tp_members */
+ 0, /* tp_getset */
+ 0, /* tp_base */
+ 0, /* tp_dict */
+ 0, /* tp_descr_get */
+ 0, /* tp_descr_set */
+ 0, /* tp_dictoffset */
+ 0, /* tp_init */
+ 0, /* tp_alloc */
+ 0, /* tp_new */
+ 0, /* tp_free */
+ 0, /* tp_is_gc */
+ 0, /* tp_bases */
+ 0, /* tp_mro */
+ 0, /* tp_cache */
+ 0, /* tp_subclasses */
+ 0, /* tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ swigpypacked_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ swigpypacked_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&swigpypacked_type) < 0)
+ return NULL;
+#endif
+ }
+ return &swigpypacked_type;
+}
+
+SWIGRUNTIME PyObject *
+SwigPyPacked_New(void *ptr, size_t size, swig_type_info *ty)
+{
+ SwigPyPacked *sobj = PyObject_NEW(SwigPyPacked, SwigPyPacked_type());
+ if (sobj) {
+ void *pack = malloc(size);
+ if (pack) {
+ memcpy(pack, ptr, size);
+ sobj->pack = pack;
+ sobj->ty = ty;
+ sobj->size = size;
+ } else {
+ PyObject_DEL((PyObject *) sobj);
+ sobj = 0;
+ }
+ }
+ return (PyObject *) sobj;
+}
+
+SWIGRUNTIME swig_type_info *
+SwigPyPacked_UnpackData(PyObject *obj, void *ptr, size_t size)
+{
+ if (SwigPyPacked_Check(obj)) {
+ SwigPyPacked *sobj = (SwigPyPacked *)obj;
+ if (sobj->size != size) return 0;
+ memcpy(ptr, sobj->pack, size);
+ return sobj->ty;
+ } else {
+ return 0;
+ }
+}
+
+/* -----------------------------------------------------------------------------
+ * pointers/data manipulation
+ * ----------------------------------------------------------------------------- */
+
+SWIGRUNTIMEINLINE PyObject *
+_SWIG_This(void)
+{
+ return SWIG_Python_str_FromChar("this");
+}
+
+static PyObject *swig_this = NULL;
+
+SWIGRUNTIME PyObject *
+SWIG_This(void)
+{
+ if (swig_this == NULL)
+ swig_this = _SWIG_This();
+ return swig_this;
+}
+
+/* #define SWIG_PYTHON_SLOW_GETSET_THIS */
+
+/* TODO: I don't know how to implement the fast getset in Python 3 right now */
+#if PY_VERSION_HEX>=0x03000000
+#define SWIG_PYTHON_SLOW_GETSET_THIS
+#endif
+
+SWIGRUNTIME SwigPyObject *
+SWIG_Python_GetSwigThis(PyObject *pyobj)
+{
+ PyObject *obj;
+
+ if (SwigPyObject_Check(pyobj))
+ return (SwigPyObject *) pyobj;
+
+#ifdef SWIGPYTHON_BUILTIN
+ (void)obj;
+# ifdef PyWeakref_CheckProxy
+ if (PyWeakref_CheckProxy(pyobj)) {
+ pyobj = PyWeakref_GET_OBJECT(pyobj);
+ if (pyobj && SwigPyObject_Check(pyobj))
+ return (SwigPyObject*) pyobj;
+ }
+# endif
+ return NULL;
+#else
+
+ obj = 0;
+
+#if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
+ if (PyInstance_Check(pyobj)) {
+ obj = _PyInstance_Lookup(pyobj, SWIG_This());
+ } else {
+ PyObject **dictptr = _PyObject_GetDictPtr(pyobj);
+ if (dictptr != NULL) {
+ PyObject *dict = *dictptr;
+ obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0;
+ } else {
+#ifdef PyWeakref_CheckProxy
+ if (PyWeakref_CheckProxy(pyobj)) {
+ PyObject *wobj = PyWeakref_GET_OBJECT(pyobj);
+ return wobj ? SWIG_Python_GetSwigThis(wobj) : 0;
+ }
+#endif
+ obj = PyObject_GetAttr(pyobj,SWIG_This());
+ if (obj) {
+ Py_DECREF(obj);
+ } else {
+ if (PyErr_Occurred()) PyErr_Clear();
+ return 0;
+ }
+ }
+ }
+#else
+ obj = PyObject_GetAttr(pyobj,SWIG_This());
+ if (obj) {
+ Py_DECREF(obj);
+ } else {
+ if (PyErr_Occurred()) PyErr_Clear();
+ return 0;
+ }
+#endif
+ if (obj && !SwigPyObject_Check(obj)) {
+ /* a PyObject is called 'this', try to get the 'real this'
+ SwigPyObject from it */
+ return SWIG_Python_GetSwigThis(obj);
+ }
+ return (SwigPyObject *)obj;
+#endif
+}
+
+/* Acquire a pointer value */
+
+SWIGRUNTIME int
+SWIG_Python_AcquirePtr(PyObject *obj, int own) {
+ if (own == SWIG_POINTER_OWN) {
+ SwigPyObject *sobj = SWIG_Python_GetSwigThis(obj);
+ if (sobj) {
+ int oldown = sobj->own;
+ sobj->own = own;
+ return oldown;
+ }
+ }
+ return 0;
+}
+
+/* Convert a pointer value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
+ int res;
+ SwigPyObject *sobj;
+ int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0;
+
+ if (!obj)
+ return SWIG_ERROR;
+ if (obj == Py_None && !implicit_conv) {
+ if (ptr)
+ *ptr = 0;
+ return SWIG_OK;
+ }
+
+ res = SWIG_ERROR;
+
+ sobj = SWIG_Python_GetSwigThis(obj);
+ if (own)
+ *own = 0;
+ while (sobj) {
+ void *vptr = sobj->ptr;
+ if (ty) {
+ swig_type_info *to = sobj->ty;
+ if (to == ty) {
+ /* no type cast needed */
+ if (ptr) *ptr = vptr;
+ break;
+ } else {
+ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
+ if (!tc) {
+ sobj = (SwigPyObject *)sobj->next;
+ } else {
+ if (ptr) {
+ int newmemory = 0;
+ *ptr = SWIG_TypeCast(tc,vptr,&newmemory);
+ if (newmemory == SWIG_CAST_NEW_MEMORY) {
+ assert(own); /* badly formed typemap which will lead to a memory leak - it must set and use own to delete *ptr */
+ if (own)
+ *own = *own | SWIG_CAST_NEW_MEMORY;
+ }
+ }
+ break;
+ }
+ }
+ } else {
+ if (ptr) *ptr = vptr;
+ break;
+ }
+ }
+ if (sobj) {
+ if (own)
+ *own = *own | sobj->own;
+ if (flags & SWIG_POINTER_DISOWN) {
+ sobj->own = 0;
+ }
+ res = SWIG_OK;
+ } else {
+ if (implicit_conv) {
+ SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
+ if (data && !data->implicitconv) {
+ PyObject *klass = data->klass;
+ if (klass) {
+ PyObject *impconv;
+ data->implicitconv = 1; /* avoid recursion and call 'explicit' constructors*/
+ impconv = SWIG_Python_CallFunctor(klass, obj);
+ data->implicitconv = 0;
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ impconv = 0;
+ }
+ if (impconv) {
+ SwigPyObject *iobj = SWIG_Python_GetSwigThis(impconv);
+ if (iobj) {
+ void *vptr;
+ res = SWIG_Python_ConvertPtrAndOwn((PyObject*)iobj, &vptr, ty, 0, 0);
+ if (SWIG_IsOK(res)) {
+ if (ptr) {
+ *ptr = vptr;
+ /* transfer the ownership to 'ptr' */
+ iobj->own = 0;
+ res = SWIG_AddCast(res);
+ res = SWIG_AddNewMask(res);
+ } else {
+ res = SWIG_AddCast(res);
+ }
+ }
+ }
+ Py_DECREF(impconv);
+ }
+ }
+ }
+ }
+ if (!SWIG_IsOK(res) && obj == Py_None) {
+ if (ptr)
+ *ptr = 0;
+ if (PyErr_Occurred())
+ PyErr_Clear();
+ res = SWIG_OK;
+ }
+ }
+ return res;
+}
+
+/* Convert a function ptr value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertFunctionPtr(PyObject *obj, void **ptr, swig_type_info *ty) {
+ if (!PyCFunction_Check(obj)) {
+ return SWIG_ConvertPtr(obj, ptr, ty, 0);
+ } else {
+ void *vptr = 0;
+
+ /* here we get the method pointer for callbacks */
+ const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc);
+ const char *desc = doc ? strstr(doc, "swig_ptr: ") : 0;
+ if (desc)
+ desc = ty ? SWIG_UnpackVoidPtr(desc + 10, &vptr, ty->name) : 0;
+ if (!desc)
+ return SWIG_ERROR;
+ if (ty) {
+ swig_cast_info *tc = SWIG_TypeCheck(desc,ty);
+ if (tc) {
+ int newmemory = 0;
+ *ptr = SWIG_TypeCast(tc,vptr,&newmemory);
+ assert(!newmemory); /* newmemory handling not yet implemented */
+ } else {
+ return SWIG_ERROR;
+ }
+ } else {
+ *ptr = vptr;
+ }
+ return SWIG_OK;
+ }
+}
+
+/* Convert a packed value value */
+
+SWIGRUNTIME int
+SWIG_Python_ConvertPacked(PyObject *obj, void *ptr, size_t sz, swig_type_info *ty) {
+ swig_type_info *to = SwigPyPacked_UnpackData(obj, ptr, sz);
+ if (!to) return SWIG_ERROR;
+ if (ty) {
+ if (to != ty) {
+ /* check type cast? */
+ swig_cast_info *tc = SWIG_TypeCheck(to->name,ty);
+ if (!tc) return SWIG_ERROR;
+ }
+ }
+ return SWIG_OK;
+}
+
+/* -----------------------------------------------------------------------------
+ * Create a new pointer object
+ * ----------------------------------------------------------------------------- */
+
+/*
+ Create a new instance object, without calling __init__, and set the
+ 'this' attribute.
+*/
+
+SWIGRUNTIME PyObject*
+SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
+{
+#if (PY_VERSION_HEX >= 0x02020000)
+ PyObject *inst = 0;
+ PyObject *newraw = data->newraw;
+ if (newraw) {
+ inst = PyObject_Call(newraw, data->newargs, NULL);
+ if (inst) {
+#if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
+ PyObject **dictptr = _PyObject_GetDictPtr(inst);
+ if (dictptr != NULL) {
+ PyObject *dict = *dictptr;
+ if (dict == NULL) {
+ dict = PyDict_New();
+ *dictptr = dict;
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ }
+ }
+#else
+ PyObject *key = SWIG_This();
+ PyObject_SetAttr(inst, key, swig_this);
+#endif
+ }
+ } else {
+#if PY_VERSION_HEX >= 0x03000000
+ inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None);
+ if (inst) {
+ PyObject_SetAttr(inst, SWIG_This(), swig_this);
+ Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
+ }
+#else
+ PyObject *dict = PyDict_New();
+ if (dict) {
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ inst = PyInstance_NewRaw(data->newargs, dict);
+ Py_DECREF(dict);
+ }
+#endif
+ }
+ return inst;
+#else
+#if (PY_VERSION_HEX >= 0x02010000)
+ PyObject *inst = 0;
+ PyObject *dict = PyDict_New();
+ if (dict) {
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ inst = PyInstance_NewRaw(data->newargs, dict);
+ Py_DECREF(dict);
+ }
+ return (PyObject *) inst;
+#else
+ PyInstanceObject *inst = PyObject_NEW(PyInstanceObject, &PyInstance_Type);
+ if (inst == NULL) {
+ return NULL;
+ }
+ inst->in_class = (PyClassObject *)data->newargs;
+ Py_INCREF(inst->in_class);
+ inst->in_dict = PyDict_New();
+ if (inst->in_dict == NULL) {
+ Py_DECREF(inst);
+ return NULL;
+ }
+#ifdef Py_TPFLAGS_HAVE_WEAKREFS
+ inst->in_weakreflist = NULL;
+#endif
+#ifdef Py_TPFLAGS_GC
+ PyObject_GC_Init(inst);
+#endif
+ PyDict_SetItem(inst->in_dict, SWIG_This(), swig_this);
+ return (PyObject *) inst;
+#endif
+#endif
+}
+
+SWIGRUNTIME void
+SWIG_Python_SetSwigThis(PyObject *inst, PyObject *swig_this)
+{
+ PyObject *dict;
+#if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
+ PyObject **dictptr = _PyObject_GetDictPtr(inst);
+ if (dictptr != NULL) {
+ dict = *dictptr;
+ if (dict == NULL) {
+ dict = PyDict_New();
+ *dictptr = dict;
+ }
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ return;
+ }
+#endif
+ dict = PyObject_GetAttrString(inst, (char*)"__dict__");
+ PyDict_SetItem(dict, SWIG_This(), swig_this);
+ Py_DECREF(dict);
+}
+
+
+SWIGINTERN PyObject *
+SWIG_Python_InitShadowInstance(PyObject *args) {
+ PyObject *obj[2];
+ if (!SWIG_Python_UnpackTuple(args, "swiginit", 2, 2, obj)) {
+ return NULL;
+ } else {
+ SwigPyObject *sthis = SWIG_Python_GetSwigThis(obj[0]);
+ if (sthis) {
+ SwigPyObject_append((PyObject*) sthis, obj[1]);
+ } else {
+ SWIG_Python_SetSwigThis(obj[0], obj[1]);
+ }
+ return SWIG_Py_Void();
+ }
+}
+
+/* Create a new pointer object */
+
+SWIGRUNTIME PyObject *
+SWIG_Python_NewPointerObj(PyObject *self, void *ptr, swig_type_info *type, int flags) {
+ SwigPyClientData *clientdata;
+ PyObject * robj;
+ int own;
+
+ if (!ptr)
+ return SWIG_Py_Void();
+
+ clientdata = type ? (SwigPyClientData *)(type->clientdata) : 0;
+ own = (flags & SWIG_POINTER_OWN) ? SWIG_POINTER_OWN : 0;
+ if (clientdata && clientdata->pytype) {
+ SwigPyObject *newobj;
+ if (flags & SWIG_BUILTIN_TP_INIT) {
+ newobj = (SwigPyObject*) self;
+ if (newobj->ptr) {
+ PyObject *next_self = clientdata->pytype->tp_alloc(clientdata->pytype, 0);
+ while (newobj->next)
+ newobj = (SwigPyObject *) newobj->next;
+ newobj->next = next_self;
+ newobj = (SwigPyObject *)next_self;
+ }
+ } else {
+ newobj = PyObject_New(SwigPyObject, clientdata->pytype);
+ }
+ if (newobj) {
+ newobj->ptr = ptr;
+ newobj->ty = type;
+ newobj->own = own;
+ newobj->next = 0;
+#ifdef SWIGPYTHON_BUILTIN
+ newobj->dict = 0;
+#endif
+ return (PyObject*) newobj;
+ }
+ return SWIG_Py_Void();
+ }
+
+ assert(!(flags & SWIG_BUILTIN_TP_INIT));
+
+ robj = SwigPyObject_New(ptr, type, own);
+ if (robj && clientdata && !(flags & SWIG_POINTER_NOSHADOW)) {
+ PyObject *inst = SWIG_Python_NewShadowInstance(clientdata, robj);
+ Py_DECREF(robj);
+ robj = inst;
+ }
+ return robj;
+}
+
+/* Create a new packed object */
+
+SWIGRUNTIMEINLINE PyObject *
+SWIG_Python_NewPackedObj(void *ptr, size_t sz, swig_type_info *type) {
+ return ptr ? SwigPyPacked_New((void *) ptr, sz, type) : SWIG_Py_Void();
+}
+
+/* -----------------------------------------------------------------------------*
+ * Get type list
+ * -----------------------------------------------------------------------------*/
+
+#ifdef SWIG_LINK_RUNTIME
+void *SWIG_ReturnGlobalTypeList(void *);
+#endif
+
+SWIGRUNTIME swig_module_info *
+SWIG_Python_GetModule(void *SWIGUNUSEDPARM(clientdata)) {
+ static void *type_pointer = (void *)0;
+ /* first check if module already created */
+ if (!type_pointer) {
+#ifdef SWIG_LINK_RUNTIME
+ type_pointer = SWIG_ReturnGlobalTypeList((void *)0);
+#else
+# ifdef SWIGPY_USE_CAPSULE
+ type_pointer = PyCapsule_Import(SWIGPY_CAPSULE_NAME, 0);
+# else
+ type_pointer = PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION,
+ (char*)"type_pointer" SWIG_TYPE_TABLE_NAME);
+# endif
+ if (PyErr_Occurred()) {
+ PyErr_Clear();
+ type_pointer = (void *)0;
+ }
+#endif
+ }
+ return (swig_module_info *) type_pointer;
+}
+
+#if PY_MAJOR_VERSION < 2
+/* PyModule_AddObject function was introduced in Python 2.0. The following function
+ is copied out of Python/modsupport.c in python version 2.3.4 */
+SWIGINTERN int
+PyModule_AddObject(PyObject *m, char *name, PyObject *o)
+{
+ PyObject *dict;
+ if (!PyModule_Check(m)) {
+ PyErr_SetString(PyExc_TypeError,
+ "PyModule_AddObject() needs module as first arg");
+ return SWIG_ERROR;
+ }
+ if (!o) {
+ PyErr_SetString(PyExc_TypeError,
+ "PyModule_AddObject() needs non-NULL value");
+ return SWIG_ERROR;
+ }
+
+ dict = PyModule_GetDict(m);
+ if (dict == NULL) {
+ /* Internal error -- modules must have a dict! */
+ PyErr_Format(PyExc_SystemError, "module '%s' has no __dict__",
+ PyModule_GetName(m));
+ return SWIG_ERROR;
+ }
+ if (PyDict_SetItemString(dict, name, o))
+ return SWIG_ERROR;
+ Py_DECREF(o);
+ return SWIG_OK;
+}
+#endif
+
+SWIGRUNTIME void
+#ifdef SWIGPY_USE_CAPSULE
+SWIG_Python_DestroyModule(PyObject *obj)
+#else
+SWIG_Python_DestroyModule(void *vptr)
+#endif
+{
+#ifdef SWIGPY_USE_CAPSULE
+ swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME);
+#else
+ swig_module_info *swig_module = (swig_module_info *) vptr;
+#endif
+ swig_type_info **types = swig_module->types;
+ size_t i;
+ for (i =0; i < swig_module->size; ++i) {
+ swig_type_info *ty = types[i];
+ if (ty->owndata) {
+ SwigPyClientData *data = (SwigPyClientData *) ty->clientdata;
+ if (data) SwigPyClientData_Del(data);
+ }
+ }
+ Py_DECREF(SWIG_This());
+ swig_this = NULL;
+}
+
+SWIGRUNTIME void
+SWIG_Python_SetModule(swig_module_info *swig_module) {
+#if PY_VERSION_HEX >= 0x03000000
+ /* Add a dummy module object into sys.modules */
+ PyObject *module = PyImport_AddModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION);
+#else
+ static PyMethodDef swig_empty_runtime_method_table[] = { {NULL, NULL, 0, NULL} }; /* Sentinel */
+ PyObject *module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION, swig_empty_runtime_method_table);
+#endif
+#ifdef SWIGPY_USE_CAPSULE
+ PyObject *pointer = PyCapsule_New((void *) swig_module, SWIGPY_CAPSULE_NAME, SWIG_Python_DestroyModule);
+ if (pointer && module) {
+ PyModule_AddObject(module, (char*)"type_pointer_capsule" SWIG_TYPE_TABLE_NAME, pointer);
+ } else {
+ Py_XDECREF(pointer);
+ }
+#else
+ PyObject *pointer = PyCObject_FromVoidPtr((void *) swig_module, SWIG_Python_DestroyModule);
+ if (pointer && module) {
+ PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME, pointer);
+ } else {
+ Py_XDECREF(pointer);
+ }
+#endif
+}
+
+/* The python cached type query */
+SWIGRUNTIME PyObject *
+SWIG_Python_TypeCache(void) {
+ static PyObject *SWIG_STATIC_POINTER(cache) = PyDict_New();
+ return cache;
+}
+
+SWIGRUNTIME swig_type_info *
+SWIG_Python_TypeQuery(const char *type)
+{
+ PyObject *cache = SWIG_Python_TypeCache();
+ PyObject *key = SWIG_Python_str_FromChar(type);
+ PyObject *obj = PyDict_GetItem(cache, key);
+ swig_type_info *descriptor;
+ if (obj) {
+#ifdef SWIGPY_USE_CAPSULE
+ descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, NULL);
+#else
+ descriptor = (swig_type_info *) PyCObject_AsVoidPtr(obj);
+#endif
+ } else {
+ swig_module_info *swig_module = SWIG_GetModule(0);
+ descriptor = SWIG_TypeQueryModule(swig_module, swig_module, type);
+ if (descriptor) {
+#ifdef SWIGPY_USE_CAPSULE
+ obj = PyCapsule_New((void*) descriptor, NULL, NULL);
+#else
+ obj = PyCObject_FromVoidPtr(descriptor, NULL);
+#endif
+ PyDict_SetItem(cache, key, obj);
+ Py_DECREF(obj);
+ }
+ }
+ Py_DECREF(key);
+ return descriptor;
+}
+
+/*
+ For backward compatibility only
+*/
+#define SWIG_POINTER_EXCEPTION 0
+#define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
+#define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
+
+SWIGRUNTIME int
+SWIG_Python_AddErrMesg(const char* mesg, int infront)
+{
+ if (PyErr_Occurred()) {
+ PyObject *type = 0;
+ PyObject *value = 0;
+ PyObject *traceback = 0;
+ PyErr_Fetch(&type, &value, &traceback);
+ if (value) {
+ char *tmp;
+ PyObject *old_str = PyObject_Str(value);
+ Py_XINCREF(type);
+ PyErr_Clear();
+ if (infront) {
+ PyErr_Format(type, "%s %s", mesg, tmp = SWIG_Python_str_AsChar(old_str));
+ } else {
+ PyErr_Format(type, "%s %s", tmp = SWIG_Python_str_AsChar(old_str), mesg);
+ }
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(old_str);
+ }
+ return 1;
+ } else {
+ return 0;
+ }
+}
+
+SWIGRUNTIME int
+SWIG_Python_ArgFail(int argnum)
+{
+ if (PyErr_Occurred()) {
+ /* add information about failing argument */
+ char mesg[256];
+ PyOS_snprintf(mesg, sizeof(mesg), "argument number %d:", argnum);
+ return SWIG_Python_AddErrMesg(mesg, 1);
+ } else {
+ return 0;
+ }
+}
+
+SWIGRUNTIMEINLINE const char *
+SwigPyObject_GetDesc(PyObject *self)
+{
+ SwigPyObject *v = (SwigPyObject *)self;
+ swig_type_info *ty = v ? v->ty : 0;
+ return ty ? ty->str : "";
+}
+
+SWIGRUNTIME void
+SWIG_Python_TypeError(const char *type, PyObject *obj)
+{
+ if (type) {
+#if defined(SWIG_COBJECT_TYPES)
+ if (obj && SwigPyObject_Check(obj)) {
+ const char *otype = (const char *) SwigPyObject_GetDesc(obj);
+ if (otype) {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, 'SwigPyObject(%s)' is received",
+ type, otype);
+ return;
+ }
+ } else
+#endif
+ {
+ const char *otype = (obj ? obj->ob_type->tp_name : 0);
+ if (otype) {
+ PyObject *str = PyObject_Str(obj);
+ const char *cstr = str ? SWIG_Python_str_AsChar(str) : 0;
+ if (cstr) {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s(%s)' is received",
+ type, otype, cstr);
+ SWIG_Python_str_DelForPy3(cstr);
+ } else {
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected, '%s' is received",
+ type, otype);
+ }
+ Py_XDECREF(str);
+ return;
+ }
+ }
+ PyErr_Format(PyExc_TypeError, "a '%s' is expected", type);
+ } else {
+ PyErr_Format(PyExc_TypeError, "unexpected type is received");
+ }
+}
+
+
+/* Convert a pointer value, signal an exception on a type mismatch */
+SWIGRUNTIME void *
+SWIG_Python_MustGetPtr(PyObject *obj, swig_type_info *ty, int SWIGUNUSEDPARM(argnum), int flags) {
+ void *result;
+ if (SWIG_Python_ConvertPtr(obj, &result, ty, flags) == -1) {
+ PyErr_Clear();
+#if SWIG_POINTER_EXCEPTION
+ if (flags) {
+ SWIG_Python_TypeError(SWIG_TypePrettyName(ty), obj);
+ SWIG_Python_ArgFail(argnum);
+ }
+#endif
+ }
+ return result;
+}
+
+#ifdef SWIGPYTHON_BUILTIN
+SWIGRUNTIME int
+SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
+ PyTypeObject *tp = obj->ob_type;
+ PyObject *descr;
+ PyObject *encoded_name;
+ descrsetfunc f;
+ int res = -1;
+
+# ifdef Py_USING_UNICODE
+ if (PyString_Check(name)) {
+ name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL);
+ if (!name)
+ return -1;
+ } else if (!PyUnicode_Check(name))
+# else
+ if (!PyString_Check(name))
+# endif
+ {
+ PyErr_Format(PyExc_TypeError, "attribute name must be string, not '%.200s'", name->ob_type->tp_name);
+ return -1;
+ } else {
+ Py_INCREF(name);
+ }
+
+ if (!tp->tp_dict) {
+ if (PyType_Ready(tp) < 0)
+ goto done;
+ }
+
+ descr = _PyType_Lookup(tp, name);
+ f = NULL;
+ if (descr != NULL)
+ f = descr->ob_type->tp_descr_set;
+ if (!f) {
+ if (PyString_Check(name)) {
+ encoded_name = name;
+ Py_INCREF(name);
+ } else {
+ encoded_name = PyUnicode_AsUTF8String(name);
+ }
+ PyErr_Format(PyExc_AttributeError, "'%.100s' object has no attribute '%.200s'", tp->tp_name, PyString_AsString(encoded_name));
+ Py_DECREF(encoded_name);
+ } else {
+ res = f(descr, obj, value);
+ }
+
+ done:
+ Py_DECREF(name);
+ return res;
+}
+#endif
+
+
+#ifdef __cplusplus
+}
+#endif
+
+
+
+#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
+
+#define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
+
+
+
+ #define SWIG_exception(code, msg) do { SWIG_Error(code, msg); SWIG_fail;; } while(0)
+
+
+/* -------- TYPES TABLE (BEGIN) -------- */
+
+#define SWIGTYPE_p_Config swig_types[0]
+#define SWIGTYPE_p_Feature swig_types[1]
+#define SWIGTYPE_p_FrontEnd swig_types[2]
+#define SWIGTYPE_p_FsgModel swig_types[3]
+#define SWIGTYPE_p_Jsgf swig_types[4]
+#define SWIGTYPE_p_JsgfIterator swig_types[5]
+#define SWIGTYPE_p_JsgfRule swig_types[6]
+#define SWIGTYPE_p_LogMath swig_types[7]
+#define SWIGTYPE_p_NGramModel swig_types[8]
+#define SWIGTYPE_p_NGramModelSet swig_types[9]
+#define SWIGTYPE_p_NGramModelSetIterator swig_types[10]
+#define SWIGTYPE_p_char swig_types[11]
+#define SWIGTYPE_p_fe_t swig_types[12]
+#define SWIGTYPE_p_feat_t swig_types[13]
+#define SWIGTYPE_p_float32 swig_types[14]
+#define SWIGTYPE_p_fsg_model_t swig_types[15]
+#define SWIGTYPE_p_int swig_types[16]
+#define SWIGTYPE_p_int16 swig_types[17]
+#define SWIGTYPE_p_jsgf_rule_iter_t swig_types[18]
+#define SWIGTYPE_p_logmath_t swig_types[19]
+#define SWIGTYPE_p_mfcc_t swig_types[20]
+#define SWIGTYPE_p_ngram_file_type_t swig_types[21]
+#define SWIGTYPE_p_ngram_model_set_iter_t swig_types[22]
+#define SWIGTYPE_p_p_char swig_types[23]
+#define SWIGTYPE_p_p_p_mfcc_t swig_types[24]
+static swig_type_info *swig_types[26];
+static swig_module_info swig_module = {swig_types, 25, 0, 0, 0, 0};
+#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
+#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
+
+/* -------- TYPES TABLE (END) -------- */
+
+#if (PY_VERSION_HEX <= 0x02000000)
+# if !defined(SWIG_PYTHON_CLASSIC)
+# error "This python version requires swig to be run with the '-classic' option"
+# endif
+#endif
+
+/*-----------------------------------------------
+ @(target):= _sphinxbase.so
+ ------------------------------------------------*/
+#if PY_VERSION_HEX >= 0x03000000
+# define SWIG_init PyInit__sphinxbase
+
+#else
+# define SWIG_init init_sphinxbase
+
+#endif
+#define SWIG_name "_sphinxbase"
+
+#define SWIGVERSION 0x020011
+#define SWIG_VERSION SWIGVERSION
+
+
+#define SWIG_as_voidptr(a) (void *)((const void *)(a))
+#define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),(void**)(a))
+
+SWIGINTERN void delete_Config(Config *self){
+ cmd_ln_free_r(self);
+ }
+
+SWIGINTERN swig_type_info*
+SWIG_pchar_descriptor(void)
+{
+ static int init = 0;
+ static swig_type_info* info = 0;
+ if (!init) {
+ info = SWIG_TypeQuery("_p_char");
+ init = 1;
+ }
+ return info;
+}
+
+
+SWIGINTERN int
+SWIG_AsCharPtrAndSize(PyObject *obj, char** cptr, size_t* psize, int *alloc)
+{
+#if PY_VERSION_HEX>=0x03000000
+ if (PyUnicode_Check(obj))
+#else
+ if (PyString_Check(obj))
+#endif
+ {
+ char *cstr; Py_ssize_t len;
+#if PY_VERSION_HEX>=0x03000000
+ if (!alloc && cptr) {
+ /* We can't allow converting without allocation, since the internal
+ representation of string in Python 3 is UCS-2/UCS-4 but we require
+ a UTF-8 representation.
+ TODO(bhy) More detailed explanation */
+ return SWIG_RuntimeError;
+ }
+ obj = PyUnicode_AsUTF8String(obj);
+ PyBytes_AsStringAndSize(obj, &cstr, &len);
+ if(alloc) *alloc = SWIG_NEWOBJ;
+#else
+ PyString_AsStringAndSize(obj, &cstr, &len);
+#endif
+ if (cptr) {
+ if (alloc) {
+ /*
+ In python the user should not be able to modify the inner
+ string representation. To warranty that, if you define
+ SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string
+ buffer is always returned.
+
+ The default behavior is just to return the pointer value,
+ so, be careful.
+ */
+#if defined(SWIG_PYTHON_SAFE_CSTRINGS)
+ if (*alloc != SWIG_OLDOBJ)
+#else
+ if (*alloc == SWIG_NEWOBJ)
+#endif
+ {
+ *cptr = (char *)memcpy((char *)malloc((len + 1)*sizeof(char)), cstr, sizeof(char)*(len + 1));
+ *alloc = SWIG_NEWOBJ;
+ }
+ else {
+ *cptr = cstr;
+ *alloc = SWIG_OLDOBJ;
+ }
+ } else {
+ #if PY_VERSION_HEX>=0x03000000
+ assert(0); /* Should never reach here in Python 3 */
+ #endif
+ *cptr = SWIG_Python_str_AsChar(obj);
+ }
+ }
+ if (psize) *psize = len + 1;
+#if PY_VERSION_HEX>=0x03000000
+ Py_XDECREF(obj);
+#endif
+ return SWIG_OK;
+ } else {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ if (pchar_descriptor) {
+ void* vptr = 0;
+ if (SWIG_ConvertPtr(obj, &vptr, pchar_descriptor, 0) == SWIG_OK) {
+ if (cptr) *cptr = (char *) vptr;
+ if (psize) *psize = vptr ? (strlen((char *)vptr) + 1) : 0;
+ if (alloc) *alloc = SWIG_OLDOBJ;
+ return SWIG_OK;
+ }
+ }
+ }
+ return SWIG_TypeError;
+}
+
+
+
+
+
+SWIGINTERN int
+SWIG_AsVal_double (PyObject *obj, double *val)
+{
+ int res = SWIG_TypeError;
+ if (PyFloat_Check(obj)) {
+ if (val) *val = PyFloat_AsDouble(obj);
+ return SWIG_OK;
+ } else if (PyInt_Check(obj)) {
+ if (val) *val = PyInt_AsLong(obj);
+ return SWIG_OK;
+ } else if (PyLong_Check(obj)) {
+ double v = PyLong_AsDouble(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ double d = PyFloat_AsDouble(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = d;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_AddCast(SWIG_OK));
+ } else {
+ PyErr_Clear();
+ }
+ }
+ }
+#endif
+ return res;
+}
+
+
+#include
+
+
+#include
+
+
+SWIGINTERNINLINE int
+SWIG_CanCastAsInteger(double *d, double min, double max) {
+ double x = *d;
+ if ((min <= x && x <= max)) {
+ double fx = floor(x);
+ double cx = ceil(x);
+ double rd = ((x - fx) < 0.5) ? fx : cx; /* simple rint */
+ if ((errno == EDOM) || (errno == ERANGE)) {
+ errno = 0;
+ } else {
+ double summ, reps, diff;
+ if (rd < x) {
+ diff = x - rd;
+ } else if (rd > x) {
+ diff = rd - x;
+ } else {
+ return 1;
+ }
+ summ = rd + x;
+ reps = diff/summ;
+ if (reps < 8*DBL_EPSILON) {
+ *d = rd;
+ return 1;
+ }
+ }
+ }
+ return 0;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_long (PyObject *obj, long* val)
+{
+ if (PyInt_Check(obj)) {
+ if (val) *val = PyInt_AsLong(obj);
+ return SWIG_OK;
+ } else if (PyLong_Check(obj)) {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ long v = PyInt_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, LONG_MIN, LONG_MAX)) {
+ if (val) *val = (long)(d);
+ return res;
+ }
+ }
+ }
+#endif
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERN int
+SWIG_AsVal_bool (PyObject *obj, bool *val)
+{
+ int r = PyObject_IsTrue(obj);
+ if (r == -1)
+ return SWIG_ERROR;
+ if (val) *val = r ? true : false;
+ return SWIG_OK;
+}
+
+SWIGINTERN void Config_set_boolean(Config *self,char const *key,bool val){
+ cmd_ln_set_boolean_r(self, key, val);
+ }
+
+#include
+#if !defined(SWIG_NO_LLONG_MAX)
+# if !defined(LLONG_MAX) && defined(__GNUC__) && defined (__LONG_LONG_MAX__)
+# define LLONG_MAX __LONG_LONG_MAX__
+# define LLONG_MIN (-LLONG_MAX - 1LL)
+# define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
+# endif
+#endif
+
+
+SWIGINTERN int
+SWIG_AsVal_int (PyObject * obj, int *val)
+{
+ long v;
+ int res = SWIG_AsVal_long (obj, &v);
+ if (SWIG_IsOK(res)) {
+ if ((v < INT_MIN || v > INT_MAX)) {
+ return SWIG_OverflowError;
+ } else {
+ if (val) *val = (int)(v);
+ }
+ }
+ return res;
+}
+
+SWIGINTERN void Config_set_int(Config *self,char const *key,int val){
+ cmd_ln_set_int_r(self, key, val);
+ }
+SWIGINTERN void Config_set_float(Config *self,char const *key,double val){
+ cmd_ln_set_float_r(self, key, val);
+ }
+SWIGINTERN void Config_set_string(Config *self,char const *key,char const *val){
+ cmd_ln_set_str_r(self, key, val);
+ }
+SWIGINTERN void Config_set_string_extra(Config *self,char const *key,char const *val){
+ cmd_ln_set_str_extra_r(self, key, val);
+ }
+SWIGINTERN bool Config_exists(Config *self,char const *key){
+ return cmd_ln_exists_r(self, key);
+ }
+
+SWIGINTERNINLINE PyObject*
+ SWIG_From_bool (bool value)
+{
+ return PyBool_FromLong(value ? 1 : 0);
+}
+
+SWIGINTERN bool Config_get_boolean(Config *self,char const *key){
+ return cmd_ln_boolean_r(self, key);
+ }
+SWIGINTERN int Config_get_int(Config *self,char const *key){
+ return cmd_ln_int_r(self, key);
+ }
+
+SWIGINTERNINLINE PyObject*
+ SWIG_From_int (int value)
+{
+ return PyInt_FromLong((long) value);
+}
+
+SWIGINTERN double Config_get_float(Config *self,char const *key){
+ return cmd_ln_float_r(self, key);
+ }
+
+ #define SWIG_From_double PyFloat_FromDouble
+
+SWIGINTERN char const *Config_get_string(Config *self,char const *key){
+ return cmd_ln_str_r(self, key);
+ }
+
+SWIGINTERNINLINE PyObject *
+SWIG_FromCharPtrAndSize(const char* carray, size_t size)
+{
+ if (carray) {
+ if (size > INT_MAX) {
+ swig_type_info* pchar_descriptor = SWIG_pchar_descriptor();
+ return pchar_descriptor ?
+ SWIG_InternalNewPointerObj((char *)(carray), pchar_descriptor, 0) : SWIG_Py_Void();
+ } else {
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_FromStringAndSize(carray, (int)(size));
+#else
+ return PyString_FromStringAndSize(carray, (int)(size));
+#endif
+ }
+ } else {
+ return SWIG_Py_Void();
+ }
+}
+
+
+SWIGINTERNINLINE PyObject *
+SWIG_FromCharPtr(const char *cptr)
+{
+ return SWIG_FromCharPtrAndSize(cptr, (cptr ? strlen(cptr) : 0));
+}
+
+SWIGINTERN FrontEnd *new_FrontEnd(fe_t *ptr){
+ return ptr;
+ }
+SWIGINTERN void delete_FrontEnd(FrontEnd *self){
+ fe_free(self);
+ }
+SWIGINTERN int FrontEnd_output_size(FrontEnd *self){
+ return fe_get_output_size(self);
+ }
+SWIGINTERN void FrontEnd_start_utt(FrontEnd *self,int *errcode){
+ *errcode = fe_start_utt(self);
+ }
+
+SWIGINTERN int
+SWIG_AsVal_unsigned_SS_long (PyObject *obj, unsigned long *val)
+{
+#if PY_VERSION_HEX < 0x03000000
+ if (PyInt_Check(obj)) {
+ long v = PyInt_AsLong(obj);
+ if (v >= 0) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ return SWIG_OverflowError;
+ }
+ } else
+#endif
+ if (PyLong_Check(obj)) {
+ unsigned long v = PyLong_AsUnsignedLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_OK;
+ } else {
+ PyErr_Clear();
+#if PY_VERSION_HEX >= 0x03000000
+ {
+ long v = PyLong_AsLong(obj);
+ if (!PyErr_Occurred()) {
+ if (v < 0) {
+ return SWIG_OverflowError;
+ }
+ } else {
+ PyErr_Clear();
+ }
+ }
+#endif
+ }
+ }
+#ifdef SWIG_PYTHON_CAST_MODE
+ {
+ int dispatch = 0;
+ unsigned long v = PyLong_AsUnsignedLong(obj);
+ if (!PyErr_Occurred()) {
+ if (val) *val = v;
+ return SWIG_AddCast(SWIG_OK);
+ } else {
+ PyErr_Clear();
+ }
+ if (!dispatch) {
+ double d;
+ int res = SWIG_AddCast(SWIG_AsVal_double (obj,&d));
+ if (SWIG_IsOK(res) && SWIG_CanCastAsInteger(&d, 0, ULONG_MAX)) {
+ if (val) *val = (unsigned long)(d);
+ return res;
+ }
+ }
+ }
+#endif
+ return SWIG_TypeError;
+}
+
+
+SWIGINTERNINLINE int
+SWIG_AsVal_size_t (PyObject * obj, size_t *val)
+{
+ unsigned long v;
+ int res = SWIG_AsVal_unsigned_SS_long (obj, val ? &v : 0);
+ if (SWIG_IsOK(res) && val) *val = (size_t)(v);
+ return res;
+}
+
+SWIGINTERN int32 FrontEnd_process_utt(FrontEnd *self,int16 const *spch,size_t nsamps,mfcc_t ***cep_block,int *errcode){
+ int32 nframes;
+ *errcode = fe_process_utt(self, spch, nsamps, cep_block, &nframes);
+ return nframes;
+ }
+SWIGINTERN int32 FrontEnd_end_utt(FrontEnd *self,mfcc_t *out_cepvector,int *errcode){
+ int32 nframes;
+ *errcode = fe_end_utt(self, out_cepvector, &nframes);
+ return nframes;
+ }
+SWIGINTERN Feature *new_Feature(feat_t *ptr){
+ return ptr;
+ }
+SWIGINTERN void delete_Feature(Feature *self){
+ feat_free(self);
+ }
+
+/* Getting isfinite working pre C99 across multiple platforms is non-trivial. Users can provide SWIG_isfinite on older platforms. */
+#ifndef SWIG_isfinite
+# if defined(isfinite)
+# define SWIG_isfinite(X) (isfinite(X))
+# elif defined(_MSC_VER)
+# define SWIG_isfinite(X) (_finite(X))
+# elif defined(__sun) && defined(__SVR4)
+# include
+# define SWIG_isfinite(X) (finite(X))
+# endif
+#endif
+
+
+/* Accept infinite as a valid float value unless we are unable to check if a value is finite */
+#ifdef SWIG_isfinite
+# define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX) && SWIG_isfinite(X))
+#else
+# define SWIG_Float_Overflow_Check(X) ((X < -FLT_MAX || X > FLT_MAX))
+#endif
+
+
+SWIGINTERN int
+SWIG_AsVal_float (PyObject * obj, float *val)
+{
+ double v;
+ int res = SWIG_AsVal_double (obj, &v);
+ if (SWIG_IsOK(res)) {
+ if (SWIG_Float_Overflow_Check(v)) {
+ return SWIG_OverflowError;
+ } else {
+ if (val) *val = (float)(v);
+ }
+ }
+ return res;
+}
+
+SWIGINTERN FsgModel *new_FsgModel__SWIG_0(char const *name,LogMath *logmath,float lw,int32 n){
+ return fsg_model_init(name, logmath, lw, n);
+ }
+SWIGINTERN FsgModel *new_FsgModel__SWIG_1(fsg_model_t *ptr){
+ return ptr;
+ }
+SWIGINTERN FsgModel *new_FsgModel__SWIG_2(char const *path,LogMath *logmath,float lw){
+ return fsg_model_readfile(path, logmath, lw);
+ }
+SWIGINTERN void delete_FsgModel(FsgModel *self){
+ fsg_model_free(self);
+ }
+SWIGINTERN int FsgModel_word_id(FsgModel *self,char const *word){
+ return fsg_model_word_id(self, word);
+ }
+SWIGINTERN int FsgModel_word_add(FsgModel *self,char const *word){
+ return fsg_model_word_add(self, word);
+ }
+SWIGINTERN void FsgModel_trans_add(FsgModel *self,int32 src,int32 dst,int32 logp,int32 wid){
+ fsg_model_trans_add(self, src, dst, logp, wid);
+ }
+SWIGINTERN int32 FsgModel_null_trans_add(FsgModel *self,int32 src,int32 dst,int32 logp){
+ return fsg_model_null_trans_add(self, src, dst, logp);
+ }
+SWIGINTERN int32 FsgModel_tag_trans_add(FsgModel *self,int32 src,int32 dst,int32 logp,int32 wid){
+ return fsg_model_tag_trans_add(self, src, dst, logp, wid);
+ }
+SWIGINTERN int FsgModel_add_silence(FsgModel *self,char const *silword,int32 state,float silprob){
+ return fsg_model_add_silence(self, silword, state, silprob);
+ }
+SWIGINTERN int FsgModel_add_alt(FsgModel *self,char const *baseword,char const *altword){
+ return fsg_model_add_alt(self, baseword, altword);
+ }
+SWIGINTERN void FsgModel_writefile(FsgModel *self,char const *path){
+ fsg_model_writefile(self, path);
+ }
+SWIGINTERN JsgfRule *new_JsgfRule(void){
+ return NULL;
+ }
+SWIGINTERN void delete_JsgfRule(JsgfRule *self){
+ }
+SWIGINTERN JsgfRule *JsgfRule_fromIter(jsgf_rule_iter_t *itor){
+ return jsgf_rule_iter_rule(itor);
+ }
+SWIGINTERN char const *JsgfRule_name(JsgfRule *self){
+ return jsgf_rule_name(self);
+ }
+SWIGINTERN bool JsgfRule_public(JsgfRule *self){
+ return jsgf_rule_public(self);
+ }
+SWIGINTERN NGramModel *NGramModel_fromIter(ngram_model_set_iter_t *itor){
+ const char *name;
+ return ngram_model_set_iter_model(itor, &name);
+ }
+SWIGINTERN NGramModel *new_NGramModel__SWIG_0(char const *path){
+ logmath_t *lmath = logmath_init(1.0001, 0, 0);
+ ngram_model_t * model = ngram_model_read(NULL, path, NGRAM_AUTO, lmath);
+ logmath_free(lmath);
+ return model;
+ }
+SWIGINTERN NGramModel *new_NGramModel__SWIG_1(Config *config,LogMath *logmath,char const *path){
+ return ngram_model_read(config, path, NGRAM_AUTO, logmath);
+ }
+SWIGINTERN void delete_NGramModel(NGramModel *self){
+ ngram_model_free(self);
+ }
+SWIGINTERN void NGramModel_write(NGramModel *self,char const *path,ngram_file_type_t ftype,int *errcode){
+ *errcode = ngram_model_write(self, path, ftype);
+ }
+SWIGINTERN ngram_file_type_t NGramModel_str_to_type(NGramModel *self,char const *str){
+ return ngram_str_to_type(str);
+ }
+SWIGINTERN char const *NGramModel_type_to_str(NGramModel *self,int type){
+ return ngram_type_to_str(type);
+ }
+SWIGINTERN void NGramModel_casefold(NGramModel *self,int kase,int *errcode){
+ *errcode = ngram_model_casefold(self, kase);
+ }
+SWIGINTERN int32 NGramModel_size(NGramModel *self){
+ return ngram_model_get_size(self);
+ }
+SWIGINTERN int32 NGramModel_add_word(NGramModel *self,char const *word,float32 weight){
+ return ngram_model_add_word(self, word, weight);
+ }
+SWIGINTERN int32 NGramModel_add_class(NGramModel *self,char const *c,float32 w,size_t n,char **ptr,float32 const *weights){
+ return ngram_model_add_class(self, c, w, ptr, weights, n);
+ }
+SWIGINTERN int32 NGramModel_prob(NGramModel *self,size_t n,char **ptr){
+ return ngram_prob(self, (const char * const *)ptr, n);
+ }
+SWIGINTERN LogMath *new_LogMath__SWIG_0(void){
+ return logmath_init(1.0001f, 0, 0);
+ }
+SWIGINTERN LogMath *new_LogMath__SWIG_1(logmath_t *ptr){
+ return ptr;
+ }
+SWIGINTERN void delete_LogMath(LogMath *self){
+ logmath_free(self);
+ }
+SWIGINTERN float64 LogMath_exp(LogMath *self,int prob){
+ return logmath_exp(self, prob);
+ }
+
+typedef struct {
+ ngram_model_set_iter_t *ptr;
+} NGramModelSetIterator;
+
+SWIGINTERN NGramModelSetIterator *new_NGramModelSetIterator(ngram_model_set_iter_t *ptr){
+ NGramModelSetIterator *iter = (NGramModelSetIterator *)ckd_malloc(sizeof *iter);
+ iter->ptr = ptr;
+ return iter;
+ }
+SWIGINTERN void delete_NGramModelSetIterator(NGramModelSetIterator *self){
+ if (self->ptr)
+ ngram_model_set_iter_free(self->ptr);
+ ckd_free(self);
+ }
+SWIGINTERN NGramModel *NGramModelSetIterator_next(NGramModelSetIterator *self){
+ if (self->ptr) {
+ NGramModel *value =NGramModel_fromIter(self->ptr);
+ self->ptr =ngram_model_set_iter_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN NGramModel *NGramModelSetIterator___next__(NGramModelSetIterator *self){
+ if (self->ptr) {
+ NGramModel *value =NGramModel_fromIter(self->ptr);
+ self->ptr =ngram_model_set_iter_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+
+typedef struct {
+ jsgf_rule_iter_t *ptr;
+} JsgfIterator;
+
+SWIGINTERN JsgfIterator *new_JsgfIterator(jsgf_rule_iter_t *ptr){
+ JsgfIterator *iter = (JsgfIterator *)ckd_malloc(sizeof *iter);
+ iter->ptr = ptr;
+ return iter;
+ }
+SWIGINTERN void delete_JsgfIterator(JsgfIterator *self){
+ if (self->ptr)
+ jsgf_rule_iter_free(self->ptr);
+ ckd_free(self);
+ }
+SWIGINTERN JsgfRule *JsgfIterator_next(JsgfIterator *self){
+ if (self->ptr) {
+ JsgfRule *value =JsgfRule_fromIter(self->ptr);
+ self->ptr =jsgf_rule_iter_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN JsgfRule *JsgfIterator___next__(JsgfIterator *self){
+ if (self->ptr) {
+ JsgfRule *value =JsgfRule_fromIter(self->ptr);
+ self->ptr =jsgf_rule_iter_next(self->ptr);
+ return value;
+ }
+ return NULL;
+ }
+SWIGINTERN NGramModelSetIterator *NGramModelSet___iter__(NGramModelSet *self){
+ return new_NGramModelSetIterator(ngram_model_set_iter(self));
+ }
+SWIGINTERN NGramModelSet *new_NGramModelSet(Config *config,LogMath *logmath,char const *path){
+ return ngram_model_set_read(config, path, logmath);
+ }
+SWIGINTERN void delete_NGramModelSet(NGramModelSet *self){
+ ngram_model_free(self);
+ }
+SWIGINTERN int32 NGramModelSet_count(NGramModelSet *self){
+ return ngram_model_set_count(self);
+ }
+SWIGINTERN NGramModel *NGramModelSet_add(NGramModelSet *self,NGramModel *model,char const *name,float weight,bool reuse_widmap){
+ return ngram_model_set_add(self, model, name, weight, reuse_widmap);
+ }
+SWIGINTERN NGramModel *NGramModelSet_select(NGramModelSet *self,char const *name){
+ return ngram_model_set_select(self, name);
+ }
+SWIGINTERN NGramModel *NGramModelSet_lookup(NGramModelSet *self,char const *name){
+ return ngram_model_set_lookup(self, name);
+ }
+SWIGINTERN char const *NGramModelSet_current(NGramModelSet *self){
+ return ngram_model_set_current(self);
+ }
+SWIGINTERN JsgfIterator *Jsgf___iter__(Jsgf *self){
+ return new_JsgfIterator(jsgf_rule_iter(self));
+ }
+SWIGINTERN Jsgf *new_Jsgf(char const *path){
+ return jsgf_parse_file(path, NULL);
+ }
+SWIGINTERN void delete_Jsgf(Jsgf *self){
+ jsgf_grammar_free(self);
+ }
+SWIGINTERN char const *Jsgf_name(Jsgf *self){
+ return jsgf_grammar_name(self);
+ }
+SWIGINTERN JsgfRule *Jsgf_get_rule(Jsgf *self,char const *name){
+ return jsgf_get_rule(self, name);
+ }
+SWIGINTERN FsgModel *Jsgf_build_fsg(Jsgf *self,JsgfRule *rule,LogMath *logmath,float lw){
+ return jsgf_build_fsg(self, rule, logmath, lw);
+ }
+#ifdef __cplusplus
+extern "C" {
+#endif
+SWIGINTERN PyObject *_wrap_delete_Config(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Config",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Config" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ delete_Config(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_boolean(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ bool arg3 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ bool val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_boolean",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_boolean" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_boolean" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_bool(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Config_set_boolean" "', argument " "3"" of type '" "bool""'");
+ }
+ arg3 = (bool)(val3);
+ Config_set_boolean(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_int(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int arg3 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_int",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_int" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_int" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Config_set_int" "', argument " "3"" of type '" "int""'");
+ }
+ arg3 = (int)(val3);
+ Config_set_int(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_float(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ double arg3 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ double val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_float",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_float" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_float" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_double(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Config_set_float" "', argument " "3"" of type '" "double""'");
+ }
+ arg3 = (double)(val3);
+ Config_set_float(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_string(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_string",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_string" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_string" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Config_set_string" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Config_set_string(arg1,(char const *)arg2,(char const *)arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_set_string_extra(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:Config_set_string_extra",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_set_string_extra" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_set_string_extra" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Config_set_string_extra" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ Config_set_string_extra(arg1,(char const *)arg2,(char const *)arg3);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_exists(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ bool result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_exists",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_exists" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_exists" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (bool)Config_exists(arg1,(char const *)arg2);
+ resultobj = SWIG_From_bool((bool)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_get_boolean(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ bool result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_get_boolean",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_get_boolean" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_get_boolean" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (bool)Config_get_boolean(arg1,(char const *)arg2);
+ resultobj = SWIG_From_bool((bool)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_get_int(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_get_int",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_get_int" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_get_int" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (int)Config_get_int(arg1,(char const *)arg2);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_get_float(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ double result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_get_float",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_get_float" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_get_float" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (double)Config_get_float(arg1,(char const *)arg2);
+ resultobj = SWIG_From_double((double)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Config_get_string(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Config_get_string",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Config_get_string" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Config_get_string" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (char *)Config_get_string(arg1,(char const *)arg2);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Config_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Config, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_FrontEnd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ fe_t *arg1 = (fe_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ FrontEnd *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_FrontEnd",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_fe_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FrontEnd" "', argument " "1"" of type '" "fe_t *""'");
+ }
+ arg1 = (fe_t *)(argp1);
+ result = (FrontEnd *)new_FrontEnd(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FrontEnd, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_FrontEnd(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_FrontEnd",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_FrontEnd" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ delete_FrontEnd(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FrontEnd_output_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:FrontEnd_output_size",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FrontEnd_output_size" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ result = (int)FrontEnd_output_size(arg1);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FrontEnd_start_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ int *arg2 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ int errcode;
+ arg2 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"O:FrontEnd_start_utt",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FrontEnd_start_utt" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ FrontEnd_start_utt(arg1,arg2);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg2 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "FrontEnd_start_utt returned %d", *arg2);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FrontEnd_process_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ int16 *arg2 = (int16 *) 0 ;
+ size_t arg3 ;
+ mfcc_t ***arg4 = (mfcc_t ***) 0 ;
+ int *arg5 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ size_t val3 ;
+ int ecode3 = 0 ;
+ void *argp4 = 0 ;
+ int res4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int32 result;
+
+ int errcode;
+ arg5 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:FrontEnd_process_utt",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FrontEnd_process_utt" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_int16, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FrontEnd_process_utt" "', argument " "2"" of type '" "int16 const *""'");
+ }
+ arg2 = (int16 *)(argp2);
+ ecode3 = SWIG_AsVal_size_t(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FrontEnd_process_utt" "', argument " "3"" of type '" "size_t""'");
+ }
+ arg3 = (size_t)(val3);
+ res4 = SWIG_ConvertPtr(obj3, &argp4,SWIGTYPE_p_p_p_mfcc_t, 0 | 0 );
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "FrontEnd_process_utt" "', argument " "4"" of type '" "mfcc_t ***""'");
+ }
+ arg4 = (mfcc_t ***)(argp4);
+ result = FrontEnd_process_utt(arg1,(int16 const *)arg2,arg3,arg4,arg5);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ if (*arg5 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "FrontEnd_process_utt returned %d", *arg5);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FrontEnd_end_utt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FrontEnd *arg1 = (FrontEnd *) 0 ;
+ mfcc_t *arg2 = (mfcc_t *) 0 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int32 result;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:FrontEnd_end_utt",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FrontEnd, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FrontEnd_end_utt" "', argument " "1"" of type '" "FrontEnd *""'");
+ }
+ arg1 = (FrontEnd *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_mfcc_t, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FrontEnd_end_utt" "', argument " "2"" of type '" "mfcc_t *""'");
+ }
+ arg2 = (mfcc_t *)(argp2);
+ result = FrontEnd_end_utt(arg1,arg2,arg3);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "FrontEnd_end_utt returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *FrontEnd_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_FrontEnd, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_Feature(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ feat_t *arg1 = (feat_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Feature *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_Feature",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_feat_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Feature" "', argument " "1"" of type '" "feat_t *""'");
+ }
+ arg1 = (feat_t *)(argp1);
+ result = (Feature *)new_Feature(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Feature, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Feature(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Feature *arg1 = (Feature *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Feature",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Feature, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Feature" "', argument " "1"" of type '" "Feature *""'");
+ }
+ arg1 = (Feature *)(argp1);
+ delete_Feature(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Feature_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Feature, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_FsgModel__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ LogMath *arg2 = (LogMath *) 0 ;
+ float arg3 ;
+ int32 arg4 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ float val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:new_FsgModel",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FsgModel" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_FsgModel" "', argument " "2"" of type '" "LogMath *""'");
+ }
+ arg2 = (LogMath *)(argp2);
+ ecode3 = SWIG_AsVal_float(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_FsgModel" "', argument " "3"" of type '" "float""'");
+ }
+ arg3 = (float)(val3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "new_FsgModel" "', argument " "4"" of type '" "int32""'");
+ }
+ arg4 = (int32)(val4);
+ result = (FsgModel *)new_FsgModel__SWIG_0((char const *)arg1,arg2,arg3,arg4);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_FsgModel__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ fsg_model_t *arg1 = (fsg_model_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_FsgModel",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_fsg_model_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FsgModel" "', argument " "1"" of type '" "fsg_model_t *""'");
+ }
+ arg1 = (fsg_model_t *)(argp1);
+ result = (FsgModel *)new_FsgModel__SWIG_1(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_FsgModel__SWIG_2(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ LogMath *arg2 = (LogMath *) 0 ;
+ float arg3 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ float val3 ;
+ int ecode3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:new_FsgModel",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_FsgModel" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_FsgModel" "', argument " "2"" of type '" "LogMath *""'");
+ }
+ arg2 = (LogMath *)(argp2);
+ ecode3 = SWIG_AsVal_float(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "new_FsgModel" "', argument " "3"" of type '" "float""'");
+ }
+ arg3 = (float)(val3);
+ result = (FsgModel *)new_FsgModel__SWIG_2((char const *)arg1,arg2,arg3);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_FsgModel(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[5];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 4) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 1) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_fsg_model_t, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_FsgModel__SWIG_1(self, args);
+ }
+ }
+ if (argc == 3) {
+ int _v;
+ int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_LogMath, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ {
+ int res = SWIG_AsVal_float(argv[2], NULL);
+ _v = SWIG_CheckState(res);
+ }
+ if (_v) {
+ return _wrap_new_FsgModel__SWIG_2(self, args);
+ }
+ }
+ }
+ }
+ if (argc == 4) {
+ int _v;
+ int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_LogMath, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ {
+ int res = SWIG_AsVal_float(argv[2], NULL);
+ _v = SWIG_CheckState(res);
+ }
+ if (_v) {
+ {
+ int res = SWIG_AsVal_int(argv[3], NULL);
+ _v = SWIG_CheckState(res);
+ }
+ if (_v) {
+ return _wrap_new_FsgModel__SWIG_0(self, args);
+ }
+ }
+ }
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_FsgModel'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " FsgModel::FsgModel(char const *,LogMath *,float,int32)\n"
+ " FsgModel::FsgModel(fsg_model_t *)\n"
+ " FsgModel::FsgModel(char const *,LogMath *,float)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_FsgModel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_FsgModel",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_FsgModel" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ delete_FsgModel(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_word_id(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:FsgModel_word_id",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_word_id" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_word_id" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (int)FsgModel_word_id(arg1,(char const *)arg2);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_word_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:FsgModel_word_add",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_word_add" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_word_add" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (int)FsgModel_word_add(arg1,(char const *)arg2);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_trans_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ int32 arg2 ;
+ int32 arg3 ;
+ int32 arg4 ;
+ int32 arg5 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ PyObject * obj4 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOOO:FsgModel_trans_add",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_trans_add" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FsgModel_trans_add" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FsgModel_trans_add" "', argument " "3"" of type '" "int32""'");
+ }
+ arg3 = (int32)(val3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FsgModel_trans_add" "', argument " "4"" of type '" "int32""'");
+ }
+ arg4 = (int32)(val4);
+ ecode5 = SWIG_AsVal_int(obj4, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "FsgModel_trans_add" "', argument " "5"" of type '" "int32""'");
+ }
+ arg5 = (int32)(val5);
+ FsgModel_trans_add(arg1,arg2,arg3,arg4,arg5);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_null_trans_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ int32 arg2 ;
+ int32 arg3 ;
+ int32 arg4 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:FsgModel_null_trans_add",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_null_trans_add" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FsgModel_null_trans_add" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FsgModel_null_trans_add" "', argument " "3"" of type '" "int32""'");
+ }
+ arg3 = (int32)(val3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FsgModel_null_trans_add" "', argument " "4"" of type '" "int32""'");
+ }
+ arg4 = (int32)(val4);
+ result = FsgModel_null_trans_add(arg1,arg2,arg3,arg4);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_tag_trans_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ int32 arg2 ;
+ int32 arg3 ;
+ int32 arg4 ;
+ int32 arg5 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ PyObject * obj4 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOOO:FsgModel_tag_trans_add",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_tag_trans_add" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FsgModel_tag_trans_add" "', argument " "2"" of type '" "int32""'");
+ }
+ arg2 = (int32)(val2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FsgModel_tag_trans_add" "', argument " "3"" of type '" "int32""'");
+ }
+ arg3 = (int32)(val3);
+ ecode4 = SWIG_AsVal_int(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FsgModel_tag_trans_add" "', argument " "4"" of type '" "int32""'");
+ }
+ arg4 = (int32)(val4);
+ ecode5 = SWIG_AsVal_int(obj4, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "FsgModel_tag_trans_add" "', argument " "5"" of type '" "int32""'");
+ }
+ arg5 = (int32)(val5);
+ result = FsgModel_tag_trans_add(arg1,arg2,arg3,arg4,arg5);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_add_silence(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ int32 arg3 ;
+ float arg4 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ float val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:FsgModel_add_silence",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_add_silence" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_add_silence" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_int(obj2, &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FsgModel_add_silence" "', argument " "3"" of type '" "int32""'");
+ }
+ arg3 = (int32)(val3);
+ ecode4 = SWIG_AsVal_float(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "FsgModel_add_silence" "', argument " "4"" of type '" "float""'");
+ }
+ arg4 = (float)(val4);
+ result = (int)FsgModel_add_silence(arg1,(char const *)arg2,arg3,arg4);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_add_alt(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ int result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:FsgModel_add_alt",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_add_alt" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_add_alt" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "FsgModel_add_alt" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ result = (int)FsgModel_add_alt(arg1,(char const *)arg2,(char const *)arg3);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_FsgModel_writefile(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ FsgModel *arg1 = (FsgModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:FsgModel_writefile",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FsgModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FsgModel_writefile" "', argument " "1"" of type '" "FsgModel *""'");
+ }
+ arg1 = (FsgModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "FsgModel_writefile" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ FsgModel_writefile(arg1,(char const *)arg2);
+ resultobj = SWIG_Py_Void();
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *FsgModel_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_FsgModel, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_JsgfRule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":new_JsgfRule")) SWIG_fail;
+ result = (JsgfRule *)new_JsgfRule();
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_JsgfRule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfRule *arg1 = (JsgfRule *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_JsgfRule",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfRule, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_JsgfRule" "', argument " "1"" of type '" "JsgfRule *""'");
+ }
+ arg1 = (JsgfRule *)(argp1);
+ delete_JsgfRule(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfRule_fromIter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ jsgf_rule_iter_t *arg1 = (jsgf_rule_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfRule_fromIter",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_jsgf_rule_iter_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfRule_fromIter" "', argument " "1"" of type '" "jsgf_rule_iter_t *""'");
+ }
+ arg1 = (jsgf_rule_iter_t *)(argp1);
+ result = (JsgfRule *)JsgfRule_fromIter(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfRule_name(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfRule *arg1 = (JsgfRule *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfRule_name",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfRule, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfRule_name" "', argument " "1"" of type '" "JsgfRule *""'");
+ }
+ arg1 = (JsgfRule *)(argp1);
+ result = (char *)JsgfRule_name(arg1);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfRule_public(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfRule *arg1 = (JsgfRule *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ bool result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfRule_public",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfRule, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfRule_public" "', argument " "1"" of type '" "JsgfRule *""'");
+ }
+ arg1 = (JsgfRule *)(argp1);
+ result = (bool)JsgfRule_public(arg1);
+ resultobj = SWIG_From_bool((bool)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *JsgfRule_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_JsgfRule, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NGramModel_fromIter(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ngram_model_set_iter_t *arg1 = (ngram_model_set_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModel_fromIter",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ngram_model_set_iter_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_fromIter" "', argument " "1"" of type '" "ngram_model_set_iter_t *""'");
+ }
+ arg1 = (ngram_model_set_iter_t *)(argp1);
+ result = (NGramModel *)NGramModel_fromIter(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModel__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_NGramModel",&obj0)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NGramModel" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ result = (NGramModel *)new_NGramModel__SWIG_0((char const *)arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModel__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ LogMath *arg2 = (LogMath *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:new_NGramModel",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NGramModel" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_NGramModel" "', argument " "2"" of type '" "LogMath *""'");
+ }
+ arg2 = (LogMath *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_NGramModel" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ result = (NGramModel *)new_NGramModel__SWIG_1(arg1,arg2,(char const *)arg3);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_NEW | 0 );
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModel(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[4];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 3) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 1) {
+ int _v;
+ int res = SWIG_AsCharPtrAndSize(argv[0], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_NGramModel__SWIG_0(self, args);
+ }
+ }
+ if (argc == 3) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_Config, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_LogMath, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ int res = SWIG_AsCharPtrAndSize(argv[2], 0, NULL, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_NGramModel__SWIG_1(self, args);
+ }
+ }
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_NGramModel'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " NGramModel::NGramModel(char const *)\n"
+ " NGramModel::NGramModel(Config *,LogMath *,char const *)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NGramModel(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NGramModel",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NGramModel" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ delete_NGramModel(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_write(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ ngram_file_type_t arg3 ;
+ int *arg4 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 ;
+ int res3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+
+ int errcode;
+ arg4 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OOO:NGramModel_write",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_write" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModel_write" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_ngram_file_type_t, 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "NGramModel_write" "', argument " "3"" of type '" "ngram_file_type_t""'");
+ }
+ if (!argp3) {
+ SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "NGramModel_write" "', argument " "3"" of type '" "ngram_file_type_t""'");
+ } else {
+ arg3 = *((ngram_file_type_t *)(argp3));
+ }
+ }
+ NGramModel_write(arg1,(char const *)arg2,arg3,arg4);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg4 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "NGramModel_write returned %d", *arg4);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_str_to_type(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ ngram_file_type_t result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModel_str_to_type",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_str_to_type" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModel_str_to_type" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = NGramModel_str_to_type(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj((ngram_file_type_t *)memcpy((ngram_file_type_t *)malloc(sizeof(ngram_file_type_t)),&result,sizeof(ngram_file_type_t)), SWIGTYPE_p_ngram_file_type_t, SWIG_POINTER_OWN | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_type_to_str(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModel_type_to_str",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_type_to_str" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "NGramModel_type_to_str" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ result = (char *)NGramModel_type_to_str(arg1,arg2);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_casefold(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ int arg2 ;
+ int *arg3 = (int *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ int errcode;
+ arg3 = &errcode;
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModel_casefold",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_casefold" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "NGramModel_casefold" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ NGramModel_casefold(arg1,arg2,arg3);
+ resultobj = SWIG_Py_Void();
+ {
+ if (*arg3 < 0) {
+ char buf[64];
+ snprintf(buf, 64, "NGramModel_casefold returned %d", *arg3);
+ SWIG_exception(SWIG_RuntimeError, buf);
+ }
+ }
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_size(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModel_size",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_size" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ result = NGramModel_size(arg1);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_add_word(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ float32 arg3 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 ;
+ int res3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:NGramModel_add_word",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_add_word" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModel_add_word" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_float32, 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "NGramModel_add_word" "', argument " "3"" of type '" "float32""'");
+ }
+ if (!argp3) {
+ SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "NGramModel_add_word" "', argument " "3"" of type '" "float32""'");
+ } else {
+ arg3 = *((float32 *)(argp3));
+ }
+ }
+ result = NGramModel_add_word(arg1,(char const *)arg2,arg3);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_add_class(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ char *arg2 = (char *) 0 ;
+ float32 arg3 ;
+ size_t arg4 ;
+ char **arg5 = (char **) 0 ;
+ float32 *arg6 = (float32 *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ void *argp3 ;
+ int res3 = 0 ;
+ void *argp6 = 0 ;
+ int res6 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ PyObject * obj4 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOOO:NGramModel_add_class",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_add_class" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModel_add_class" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ res3 = SWIG_ConvertPtr(obj2, &argp3, SWIGTYPE_p_float32, 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "NGramModel_add_class" "', argument " "3"" of type '" "float32""'");
+ }
+ if (!argp3) {
+ SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "NGramModel_add_class" "', argument " "3"" of type '" "float32""'");
+ } else {
+ arg3 = *((float32 *)(argp3));
+ }
+ }
+ {
+ /* Check if is a list */
+ arg4 = 0;
+ if (PyList_Check(obj3)) {
+ int i;
+ arg4 = PyList_Size(obj3);
+ arg5 = (char **) calloc((arg4 + 1), sizeof(char *));
+ for (i = 0; i < arg4; i++) {
+ PyObject *o = PyList_GetItem(obj3,i);
+ arg5[i] = SWIG_Python_str_AsChar(o);
+ }
+ } else {
+ PyErr_SetString(PyExc_TypeError, "list type expected");
+ return NULL;
+ }
+ }
+ res6 = SWIG_ConvertPtr(obj4, &argp6,SWIGTYPE_p_float32, 0 | 0 );
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "NGramModel_add_class" "', argument " "6"" of type '" "float32 const *""'");
+ }
+ arg6 = (float32 *)(argp6);
+ result = NGramModel_add_class(arg1,(char const *)arg2,arg3,arg4,arg5,(float32 const *)arg6);
+ resultobj = SWIG_From_int((int)(result));
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ {
+ int i;
+ if (arg5 != NULL) {
+ for (i = 0; arg5[i] != NULL; i++) {
+ SWIG_Python_str_DelForPy3(arg5[i]);
+ }
+ free(arg5);
+ }
+ }
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ {
+ int i;
+ if (arg5 != NULL) {
+ for (i = 0; arg5[i] != NULL; i++) {
+ SWIG_Python_str_DelForPy3(arg5[i]);
+ }
+ free(arg5);
+ }
+ }
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModel_prob(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModel *arg1 = (NGramModel *) 0 ;
+ size_t arg2 ;
+ char **arg3 = (char **) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModel_prob",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModel_prob" "', argument " "1"" of type '" "NGramModel *""'");
+ }
+ arg1 = (NGramModel *)(argp1);
+ {
+ /* Check if is a list */
+ arg2 = 0;
+ if (PyList_Check(obj1)) {
+ int i;
+ arg2 = PyList_Size(obj1);
+ arg3 = (char **) calloc((arg2 + 1), sizeof(char *));
+ for (i = 0; i < arg2; i++) {
+ PyObject *o = PyList_GetItem(obj1,i);
+ arg3[i] = SWIG_Python_str_AsChar(o);
+ }
+ } else {
+ PyErr_SetString(PyExc_TypeError, "list type expected");
+ return NULL;
+ }
+ }
+ result = NGramModel_prob(arg1,arg2,arg3);
+ resultobj = SWIG_From_int((int)(result));
+ {
+ int i;
+ if (arg3 != NULL) {
+ for (i = 0; arg3[i] != NULL; i++) {
+ SWIG_Python_str_DelForPy3(arg3[i]);
+ }
+ free(arg3);
+ }
+ }
+ return resultobj;
+fail:
+ {
+ int i;
+ if (arg3 != NULL) {
+ for (i = 0; arg3[i] != NULL; i++) {
+ SWIG_Python_str_DelForPy3(arg3[i]);
+ }
+ free(arg3);
+ }
+ }
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NGramModel_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NGramModel, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_new_LogMath__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ LogMath *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)":new_LogMath")) SWIG_fail;
+ result = (LogMath *)new_LogMath__SWIG_0();
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_LogMath, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_LogMath__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ logmath_t *arg1 = (logmath_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ LogMath *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_LogMath",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_logmath_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_LogMath" "', argument " "1"" of type '" "logmath_t *""'");
+ }
+ arg1 = (logmath_t *)(argp1);
+ result = (LogMath *)new_LogMath__SWIG_1(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_LogMath, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_LogMath(PyObject *self, PyObject *args) {
+ int argc;
+ PyObject *argv[2];
+ int ii;
+
+ if (!PyTuple_Check(args)) SWIG_fail;
+ argc = args ? (int)PyObject_Length(args) : 0;
+ for (ii = 0; (ii < 1) && (ii < argc); ii++) {
+ argv[ii] = PyTuple_GET_ITEM(args,ii);
+ }
+ if (argc == 0) {
+ return _wrap_new_LogMath__SWIG_0(self, args);
+ }
+ if (argc == 1) {
+ int _v;
+ void *vptr = 0;
+ int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_logmath_t, 0);
+ _v = SWIG_CheckState(res);
+ if (_v) {
+ return _wrap_new_LogMath__SWIG_1(self, args);
+ }
+ }
+
+fail:
+ SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'new_LogMath'.\n"
+ " Possible C/C++ prototypes are:\n"
+ " LogMath::LogMath()\n"
+ " LogMath::LogMath(logmath_t *)\n");
+ return 0;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_LogMath(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ LogMath *arg1 = (LogMath *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_LogMath",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_LogMath, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_LogMath" "', argument " "1"" of type '" "LogMath *""'");
+ }
+ arg1 = (LogMath *)(argp1);
+ delete_LogMath(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_LogMath_exp(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ LogMath *arg1 = (LogMath *) 0 ;
+ int arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ float64 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:LogMath_exp",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "LogMath_exp" "', argument " "1"" of type '" "LogMath *""'");
+ }
+ arg1 = (LogMath *)(argp1);
+ ecode2 = SWIG_AsVal_int(obj1, &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "LogMath_exp" "', argument " "2"" of type '" "int""'");
+ }
+ arg2 = (int)(val2);
+ result = LogMath_exp(arg1,arg2);
+ resultobj = SWIG_From_double((double)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *LogMath_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_LogMath, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NGramModelSetIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ ngram_model_set_iter_t *arg2 = (ngram_model_set_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModelSetIterator_ptr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSetIterator_ptr_set" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_ngram_model_set_iter_t, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModelSetIterator_ptr_set" "', argument " "2"" of type '" "ngram_model_set_iter_t *""'");
+ }
+ arg2 = (ngram_model_set_iter_t *)(argp2);
+ if (arg1) (arg1)->ptr = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSetIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ ngram_model_set_iter_t *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSetIterator_ptr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSetIterator_ptr_get" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ result = (ngram_model_set_iter_t *) ((arg1)->ptr);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_ngram_model_set_iter_t, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModelSetIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ ngram_model_set_iter_t *arg1 = (ngram_model_set_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModelSetIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_NGramModelSetIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_ngram_model_set_iter_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NGramModelSetIterator" "', argument " "1"" of type '" "ngram_model_set_iter_t *""'");
+ }
+ arg1 = (ngram_model_set_iter_t *)(argp1);
+ result = (NGramModelSetIterator *)new_NGramModelSetIterator(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModelSetIterator, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NGramModelSetIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NGramModelSetIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NGramModelSetIterator" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ delete_NGramModelSetIterator(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSetIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSetIterator_next",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSetIterator_next" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (NGramModel *)NGramModelSetIterator_next(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSetIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSetIterator *arg1 = (NGramModelSetIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSetIterator___next__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSetIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSetIterator___next__" "', argument " "1"" of type '" "NGramModelSetIterator *""'");
+ }
+ arg1 = (NGramModelSetIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (NGramModel *)NGramModelSetIterator___next__(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NGramModelSetIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NGramModelSetIterator, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_JsgfIterator_ptr_set(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ jsgf_rule_iter_t *arg2 = (jsgf_rule_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:JsgfIterator_ptr_set",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfIterator_ptr_set" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_jsgf_rule_iter_t, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "JsgfIterator_ptr_set" "', argument " "2"" of type '" "jsgf_rule_iter_t *""'");
+ }
+ arg2 = (jsgf_rule_iter_t *)(argp2);
+ if (arg1) (arg1)->ptr = arg2;
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfIterator_ptr_get(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ jsgf_rule_iter_t *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfIterator_ptr_get",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfIterator_ptr_get" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ result = (jsgf_rule_iter_t *) ((arg1)->ptr);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_jsgf_rule_iter_t, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_JsgfIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ jsgf_rule_iter_t *arg1 = (jsgf_rule_iter_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_JsgfIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_jsgf_rule_iter_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_JsgfIterator" "', argument " "1"" of type '" "jsgf_rule_iter_t *""'");
+ }
+ arg1 = (jsgf_rule_iter_t *)(argp1);
+ result = (JsgfIterator *)new_JsgfIterator(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfIterator, SWIG_POINTER_NEW | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_JsgfIterator(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_JsgfIterator",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_JsgfIterator" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ delete_JsgfIterator(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfIterator_next(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfIterator_next",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfIterator_next" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (JsgfRule *)JsgfIterator_next(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_JsgfIterator___next__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ JsgfIterator *arg1 = (JsgfIterator *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:JsgfIterator___next__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_JsgfIterator, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "JsgfIterator___next__" "', argument " "1"" of type '" "JsgfIterator *""'");
+ }
+ arg1 = (JsgfIterator *)(argp1);
+ {
+ if (!arg1->ptr) {
+ SWIG_SetErrorObj(PyExc_StopIteration, SWIG_Py_Void());
+ SWIG_fail;
+ }
+ result = (JsgfRule *)JsgfIterator___next__(arg1);;
+ }
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *JsgfIterator_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_JsgfIterator, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_NGramModelSet___iter__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ NGramModelSetIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSet___iter__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet___iter__" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ result = (NGramModelSetIterator *)NGramModelSet___iter__(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModelSetIterator, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_NGramModelSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Config *arg1 = (Config *) 0 ;
+ LogMath *arg2 = (LogMath *) 0 ;
+ char *arg3 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ NGramModelSet *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOO:new_NGramModelSet",&obj0,&obj1,&obj2)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Config, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_NGramModelSet" "', argument " "1"" of type '" "Config *""'");
+ }
+ arg1 = (Config *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "new_NGramModelSet" "', argument " "2"" of type '" "LogMath *""'");
+ }
+ arg2 = (LogMath *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "new_NGramModelSet" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ result = (NGramModelSet *)new_NGramModelSet(arg1,arg2,(char const *)arg3);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModelSet, SWIG_POINTER_NEW | 0 );
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_NGramModelSet(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_NGramModelSet",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_NGramModelSet" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ delete_NGramModelSet(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_count(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ int32 result;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSet_count",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_count" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ result = NGramModelSet_count(arg1);
+ resultobj = SWIG_From_int((int)(result));
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_add(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ NGramModel *arg2 = (NGramModel *) 0 ;
+ char *arg3 = (char *) 0 ;
+ float arg4 ;
+ bool arg5 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ float val4 ;
+ int ecode4 = 0 ;
+ bool val5 ;
+ int ecode5 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ PyObject * obj4 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOOO:NGramModelSet_add",&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_add" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModelSet_add" "', argument " "2"" of type '" "NGramModel *""'");
+ }
+ arg2 = (NGramModel *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(obj2, &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "NGramModelSet_add" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_float(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "NGramModelSet_add" "', argument " "4"" of type '" "float""'");
+ }
+ arg4 = (float)(val4);
+ ecode5 = SWIG_AsVal_bool(obj4, &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "NGramModelSet_add" "', argument " "5"" of type '" "bool""'");
+ }
+ arg5 = (bool)(val5);
+ result = (NGramModel *)NGramModelSet_add(arg1,arg2,(char const *)arg3,arg4,arg5);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return resultobj;
+fail:
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_select(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModelSet_select",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_select" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModelSet_select" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (NGramModel *)NGramModelSet_select(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_lookup(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ NGramModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:NGramModelSet_lookup",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_lookup" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "NGramModelSet_lookup" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (NGramModel *)NGramModelSet_lookup(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_NGramModel, 0 | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_NGramModelSet_current(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ NGramModelSet *arg1 = (NGramModelSet *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:NGramModelSet_current",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_NGramModelSet, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "NGramModelSet_current" "', argument " "1"" of type '" "NGramModelSet *""'");
+ }
+ arg1 = (NGramModelSet *)(argp1);
+ result = (char *)NGramModelSet_current(arg1);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *NGramModelSet_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_NGramModelSet, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+SWIGINTERN PyObject *_wrap_Jsgf___iter__(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ JsgfIterator *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Jsgf___iter__",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Jsgf___iter__" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ result = (JsgfIterator *)Jsgf___iter__(arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfIterator, SWIG_POINTER_OWN | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_new_Jsgf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ char *arg1 = (char *) 0 ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ PyObject * obj0 = 0 ;
+ Jsgf *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:new_Jsgf",&obj0)) SWIG_fail;
+ res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "new_Jsgf" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ result = (Jsgf *)new_Jsgf((char const *)arg1);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_Jsgf, SWIG_POINTER_NEW | 0 );
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return resultobj;
+fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_delete_Jsgf(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:delete_Jsgf",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, SWIG_POINTER_DISOWN | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_Jsgf" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ delete_Jsgf(arg1);
+ resultobj = SWIG_Py_Void();
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Jsgf_name(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ PyObject * obj0 = 0 ;
+ char *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"O:Jsgf_name",&obj0)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Jsgf_name" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ result = (char *)Jsgf_name(arg1);
+ resultobj = SWIG_FromCharPtr((const char *)result);
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Jsgf_get_rule(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ JsgfRule *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OO:Jsgf_get_rule",&obj0,&obj1)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Jsgf_get_rule" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Jsgf_get_rule" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ result = (JsgfRule *)Jsgf_get_rule(arg1,(char const *)arg2);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_JsgfRule, 0 | 0 );
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return resultobj;
+fail:
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *_wrap_Jsgf_build_fsg(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *resultobj = 0;
+ Jsgf *arg1 = (Jsgf *) 0 ;
+ JsgfRule *arg2 = (JsgfRule *) 0 ;
+ LogMath *arg3 = (LogMath *) 0 ;
+ float arg4 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ float val4 ;
+ int ecode4 = 0 ;
+ PyObject * obj0 = 0 ;
+ PyObject * obj1 = 0 ;
+ PyObject * obj2 = 0 ;
+ PyObject * obj3 = 0 ;
+ FsgModel *result = 0 ;
+
+ if (!PyArg_ParseTuple(args,(char *)"OOOO:Jsgf_build_fsg",&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
+ res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_Jsgf, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "Jsgf_build_fsg" "', argument " "1"" of type '" "Jsgf *""'");
+ }
+ arg1 = (Jsgf *)(argp1);
+ res2 = SWIG_ConvertPtr(obj1, &argp2,SWIGTYPE_p_JsgfRule, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "Jsgf_build_fsg" "', argument " "2"" of type '" "JsgfRule *""'");
+ }
+ arg2 = (JsgfRule *)(argp2);
+ res3 = SWIG_ConvertPtr(obj2, &argp3,SWIGTYPE_p_LogMath, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "Jsgf_build_fsg" "', argument " "3"" of type '" "LogMath *""'");
+ }
+ arg3 = (LogMath *)(argp3);
+ ecode4 = SWIG_AsVal_float(obj3, &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Jsgf_build_fsg" "', argument " "4"" of type '" "float""'");
+ }
+ arg4 = (float)(val4);
+ result = (FsgModel *)Jsgf_build_fsg(arg1,arg2,arg3,arg4);
+ resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_FsgModel, 0 | 0 );
+ return resultobj;
+fail:
+ return NULL;
+}
+
+
+SWIGINTERN PyObject *Jsgf_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
+ PyObject *obj;
+ if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL;
+ SWIG_TypeNewClientData(SWIGTYPE_p_Jsgf, SWIG_NewClientData(obj));
+ return SWIG_Py_Void();
+}
+
+static PyMethodDef SwigMethods[] = {
+ { (char *)"SWIG_PyInstanceMethod_New", (PyCFunction)SWIG_PyInstanceMethod_New, METH_O, NULL},
+ { (char *)"delete_Config", _wrap_delete_Config, METH_VARARGS, (char *)"delete_Config(Config self)"},
+ { (char *)"Config_set_boolean", _wrap_Config_set_boolean, METH_VARARGS, (char *)"Config_set_boolean(Config self, char const * key, bool val)"},
+ { (char *)"Config_set_int", _wrap_Config_set_int, METH_VARARGS, (char *)"Config_set_int(Config self, char const * key, int val)"},
+ { (char *)"Config_set_float", _wrap_Config_set_float, METH_VARARGS, (char *)"Config_set_float(Config self, char const * key, double val)"},
+ { (char *)"Config_set_string", _wrap_Config_set_string, METH_VARARGS, (char *)"Config_set_string(Config self, char const * key, char const * val)"},
+ { (char *)"Config_set_string_extra", _wrap_Config_set_string_extra, METH_VARARGS, (char *)"Config_set_string_extra(Config self, char const * key, char const * val)"},
+ { (char *)"Config_exists", _wrap_Config_exists, METH_VARARGS, (char *)"Config_exists(Config self, char const * key) -> bool"},
+ { (char *)"Config_get_boolean", _wrap_Config_get_boolean, METH_VARARGS, (char *)"Config_get_boolean(Config self, char const * key) -> bool"},
+ { (char *)"Config_get_int", _wrap_Config_get_int, METH_VARARGS, (char *)"Config_get_int(Config self, char const * key) -> int"},
+ { (char *)"Config_get_float", _wrap_Config_get_float, METH_VARARGS, (char *)"Config_get_float(Config self, char const * key) -> double"},
+ { (char *)"Config_get_string", _wrap_Config_get_string, METH_VARARGS, (char *)"Config_get_string(Config self, char const * key) -> char const *"},
+ { (char *)"Config_swigregister", Config_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_FrontEnd", _wrap_new_FrontEnd, METH_VARARGS, (char *)"new_FrontEnd(fe_t * ptr) -> FrontEnd"},
+ { (char *)"delete_FrontEnd", _wrap_delete_FrontEnd, METH_VARARGS, (char *)"delete_FrontEnd(FrontEnd self)"},
+ { (char *)"FrontEnd_output_size", _wrap_FrontEnd_output_size, METH_VARARGS, (char *)"FrontEnd_output_size(FrontEnd self) -> int"},
+ { (char *)"FrontEnd_start_utt", _wrap_FrontEnd_start_utt, METH_VARARGS, (char *)"FrontEnd_start_utt(FrontEnd self)"},
+ { (char *)"FrontEnd_process_utt", _wrap_FrontEnd_process_utt, METH_VARARGS, (char *)"FrontEnd_process_utt(FrontEnd self, int16 const * spch, size_t nsamps, mfcc_t *** cep_block) -> int32"},
+ { (char *)"FrontEnd_end_utt", _wrap_FrontEnd_end_utt, METH_VARARGS, (char *)"FrontEnd_end_utt(FrontEnd self, mfcc_t * out_cepvector) -> int32"},
+ { (char *)"FrontEnd_swigregister", FrontEnd_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_Feature", _wrap_new_Feature, METH_VARARGS, (char *)"new_Feature(feat_t * ptr) -> Feature"},
+ { (char *)"delete_Feature", _wrap_delete_Feature, METH_VARARGS, (char *)"delete_Feature(Feature self)"},
+ { (char *)"Feature_swigregister", Feature_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_FsgModel", _wrap_new_FsgModel, METH_VARARGS, (char *)"\n"
+ "FsgModel(char const * name, LogMath logmath, float lw, int32 n)\n"
+ "FsgModel(fsg_model_t * ptr)\n"
+ "new_FsgModel(char const * path, LogMath logmath, float lw) -> FsgModel\n"
+ ""},
+ { (char *)"delete_FsgModel", _wrap_delete_FsgModel, METH_VARARGS, (char *)"delete_FsgModel(FsgModel self)"},
+ { (char *)"FsgModel_word_id", _wrap_FsgModel_word_id, METH_VARARGS, (char *)"FsgModel_word_id(FsgModel self, char const * word) -> int"},
+ { (char *)"FsgModel_word_add", _wrap_FsgModel_word_add, METH_VARARGS, (char *)"FsgModel_word_add(FsgModel self, char const * word) -> int"},
+ { (char *)"FsgModel_trans_add", _wrap_FsgModel_trans_add, METH_VARARGS, (char *)"FsgModel_trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid)"},
+ { (char *)"FsgModel_null_trans_add", _wrap_FsgModel_null_trans_add, METH_VARARGS, (char *)"FsgModel_null_trans_add(FsgModel self, int32 src, int32 dst, int32 logp) -> int32"},
+ { (char *)"FsgModel_tag_trans_add", _wrap_FsgModel_tag_trans_add, METH_VARARGS, (char *)"FsgModel_tag_trans_add(FsgModel self, int32 src, int32 dst, int32 logp, int32 wid) -> int32"},
+ { (char *)"FsgModel_add_silence", _wrap_FsgModel_add_silence, METH_VARARGS, (char *)"FsgModel_add_silence(FsgModel self, char const * silword, int32 state, float silprob) -> int"},
+ { (char *)"FsgModel_add_alt", _wrap_FsgModel_add_alt, METH_VARARGS, (char *)"FsgModel_add_alt(FsgModel self, char const * baseword, char const * altword) -> int"},
+ { (char *)"FsgModel_writefile", _wrap_FsgModel_writefile, METH_VARARGS, (char *)"FsgModel_writefile(FsgModel self, char const * path)"},
+ { (char *)"FsgModel_swigregister", FsgModel_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_JsgfRule", _wrap_new_JsgfRule, METH_VARARGS, (char *)"new_JsgfRule() -> JsgfRule"},
+ { (char *)"delete_JsgfRule", _wrap_delete_JsgfRule, METH_VARARGS, (char *)"delete_JsgfRule(JsgfRule self)"},
+ { (char *)"JsgfRule_fromIter", _wrap_JsgfRule_fromIter, METH_VARARGS, (char *)"JsgfRule_fromIter(jsgf_rule_iter_t * itor) -> JsgfRule"},
+ { (char *)"JsgfRule_name", _wrap_JsgfRule_name, METH_VARARGS, (char *)"JsgfRule_name(JsgfRule self) -> char const *"},
+ { (char *)"JsgfRule_public", _wrap_JsgfRule_public, METH_VARARGS, (char *)"JsgfRule_public(JsgfRule self) -> bool"},
+ { (char *)"JsgfRule_swigregister", JsgfRule_swigregister, METH_VARARGS, NULL},
+ { (char *)"NGramModel_fromIter", _wrap_NGramModel_fromIter, METH_VARARGS, (char *)"NGramModel_fromIter(ngram_model_set_iter_t * itor) -> NGramModel"},
+ { (char *)"new_NGramModel", _wrap_new_NGramModel, METH_VARARGS, (char *)"\n"
+ "NGramModel(char const * path)\n"
+ "new_NGramModel(Config config, LogMath logmath, char const * path) -> NGramModel\n"
+ ""},
+ { (char *)"delete_NGramModel", _wrap_delete_NGramModel, METH_VARARGS, (char *)"delete_NGramModel(NGramModel self)"},
+ { (char *)"NGramModel_write", _wrap_NGramModel_write, METH_VARARGS, (char *)"NGramModel_write(NGramModel self, char const * path, ngram_file_type_t ftype)"},
+ { (char *)"NGramModel_str_to_type", _wrap_NGramModel_str_to_type, METH_VARARGS, (char *)"NGramModel_str_to_type(NGramModel self, char const * str) -> ngram_file_type_t"},
+ { (char *)"NGramModel_type_to_str", _wrap_NGramModel_type_to_str, METH_VARARGS, (char *)"NGramModel_type_to_str(NGramModel self, int type) -> char const *"},
+ { (char *)"NGramModel_casefold", _wrap_NGramModel_casefold, METH_VARARGS, (char *)"NGramModel_casefold(NGramModel self, int kase)"},
+ { (char *)"NGramModel_size", _wrap_NGramModel_size, METH_VARARGS, (char *)"NGramModel_size(NGramModel self) -> int32"},
+ { (char *)"NGramModel_add_word", _wrap_NGramModel_add_word, METH_VARARGS, (char *)"NGramModel_add_word(NGramModel self, char const * word, float32 weight) -> int32"},
+ { (char *)"NGramModel_add_class", _wrap_NGramModel_add_class, METH_VARARGS, (char *)"NGramModel_add_class(NGramModel self, char const * c, float32 w, size_t n, float32 const * weights) -> int32"},
+ { (char *)"NGramModel_prob", _wrap_NGramModel_prob, METH_VARARGS, (char *)"NGramModel_prob(NGramModel self, size_t n) -> int32"},
+ { (char *)"NGramModel_swigregister", NGramModel_swigregister, METH_VARARGS, NULL},
+ { (char *)"new_LogMath", _wrap_new_LogMath, METH_VARARGS, (char *)"\n"
+ "LogMath()\n"
+ "new_LogMath(logmath_t * ptr) -> LogMath\n"
+ ""},
+ { (char *)"delete_LogMath", _wrap_delete_LogMath, METH_VARARGS, (char *)"delete_LogMath(LogMath self)"},
+ { (char *)"LogMath_exp", _wrap_LogMath_exp, METH_VARARGS, (char *)"LogMath_exp(LogMath self, int prob) -> float64"},
+ { (char *)"LogMath_swigregister", LogMath_swigregister, METH_VARARGS, NULL},
+ { (char *)"NGramModelSetIterator_ptr_set", _wrap_NGramModelSetIterator_ptr_set, METH_VARARGS, (char *)"NGramModelSetIterator_ptr_set(NGramModelSetIterator self, ngram_model_set_iter_t * ptr)"},
+ { (char *)"NGramModelSetIterator_ptr_get", _wrap_NGramModelSetIterator_ptr_get, METH_VARARGS, (char *)"NGramModelSetIterator_ptr_get(NGramModelSetIterator self) -> ngram_model_set_iter_t *"},
+ { (char *)"new_NGramModelSetIterator", _wrap_new_NGramModelSetIterator, METH_VARARGS, (char *)"new_NGramModelSetIterator(ngram_model_set_iter_t * ptr) -> NGramModelSetIterator"},
+ { (char *)"delete_NGramModelSetIterator", _wrap_delete_NGramModelSetIterator, METH_VARARGS, (char *)"delete_NGramModelSetIterator(NGramModelSetIterator self)"},
+ { (char *)"NGramModelSetIterator_next", _wrap_NGramModelSetIterator_next, METH_VARARGS, (char *)"NGramModelSetIterator_next(NGramModelSetIterator self) -> NGramModel"},
+ { (char *)"NGramModelSetIterator___next__", _wrap_NGramModelSetIterator___next__, METH_VARARGS, (char *)"NGramModelSetIterator___next__(NGramModelSetIterator self) -> NGramModel"},
+ { (char *)"NGramModelSetIterator_swigregister", NGramModelSetIterator_swigregister, METH_VARARGS, NULL},
+ { (char *)"JsgfIterator_ptr_set", _wrap_JsgfIterator_ptr_set, METH_VARARGS, (char *)"JsgfIterator_ptr_set(JsgfIterator self, jsgf_rule_iter_t * ptr)"},
+ { (char *)"JsgfIterator_ptr_get", _wrap_JsgfIterator_ptr_get, METH_VARARGS, (char *)"JsgfIterator_ptr_get(JsgfIterator self) -> jsgf_rule_iter_t *"},
+ { (char *)"new_JsgfIterator", _wrap_new_JsgfIterator, METH_VARARGS, (char *)"new_JsgfIterator(jsgf_rule_iter_t * ptr) -> JsgfIterator"},
+ { (char *)"delete_JsgfIterator", _wrap_delete_JsgfIterator, METH_VARARGS, (char *)"delete_JsgfIterator(JsgfIterator self)"},
+ { (char *)"JsgfIterator_next", _wrap_JsgfIterator_next, METH_VARARGS, (char *)"JsgfIterator_next(JsgfIterator self) -> JsgfRule"},
+ { (char *)"JsgfIterator___next__", _wrap_JsgfIterator___next__, METH_VARARGS, (char *)"JsgfIterator___next__(JsgfIterator self) -> JsgfRule"},
+ { (char *)"JsgfIterator_swigregister", JsgfIterator_swigregister, METH_VARARGS, NULL},
+ { (char *)"NGramModelSet___iter__", _wrap_NGramModelSet___iter__, METH_VARARGS, (char *)"NGramModelSet___iter__(NGramModelSet self) -> NGramModelSetIterator"},
+ { (char *)"new_NGramModelSet", _wrap_new_NGramModelSet, METH_VARARGS, (char *)"new_NGramModelSet(Config config, LogMath logmath, char const * path) -> NGramModelSet"},
+ { (char *)"delete_NGramModelSet", _wrap_delete_NGramModelSet, METH_VARARGS, (char *)"delete_NGramModelSet(NGramModelSet self)"},
+ { (char *)"NGramModelSet_count", _wrap_NGramModelSet_count, METH_VARARGS, (char *)"NGramModelSet_count(NGramModelSet self) -> int32"},
+ { (char *)"NGramModelSet_add", _wrap_NGramModelSet_add, METH_VARARGS, (char *)"NGramModelSet_add(NGramModelSet self, NGramModel model, char const * name, float weight, bool reuse_widmap) -> NGramModel"},
+ { (char *)"NGramModelSet_select", _wrap_NGramModelSet_select, METH_VARARGS, (char *)"NGramModelSet_select(NGramModelSet self, char const * name) -> NGramModel"},
+ { (char *)"NGramModelSet_lookup", _wrap_NGramModelSet_lookup, METH_VARARGS, (char *)"NGramModelSet_lookup(NGramModelSet self, char const * name) -> NGramModel"},
+ { (char *)"NGramModelSet_current", _wrap_NGramModelSet_current, METH_VARARGS, (char *)"NGramModelSet_current(NGramModelSet self) -> char const *"},
+ { (char *)"NGramModelSet_swigregister", NGramModelSet_swigregister, METH_VARARGS, NULL},
+ { (char *)"Jsgf___iter__", _wrap_Jsgf___iter__, METH_VARARGS, (char *)"Jsgf___iter__(Jsgf self) -> JsgfIterator"},
+ { (char *)"new_Jsgf", _wrap_new_Jsgf, METH_VARARGS, (char *)"new_Jsgf(char const * path) -> Jsgf"},
+ { (char *)"delete_Jsgf", _wrap_delete_Jsgf, METH_VARARGS, (char *)"delete_Jsgf(Jsgf self)"},
+ { (char *)"Jsgf_name", _wrap_Jsgf_name, METH_VARARGS, (char *)"Jsgf_name(Jsgf self) -> char const *"},
+ { (char *)"Jsgf_get_rule", _wrap_Jsgf_get_rule, METH_VARARGS, (char *)"Jsgf_get_rule(Jsgf self, char const * name) -> JsgfRule"},
+ { (char *)"Jsgf_build_fsg", _wrap_Jsgf_build_fsg, METH_VARARGS, (char *)"Jsgf_build_fsg(Jsgf self, JsgfRule rule, LogMath logmath, float lw) -> FsgModel"},
+ { (char *)"Jsgf_swigregister", Jsgf_swigregister, METH_VARARGS, NULL},
+ { NULL, NULL, 0, NULL }
+};
+
+
+/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
+
+static swig_type_info _swigt__p_Config = {"_p_Config", "Config *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Feature = {"_p_Feature", "Feature *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_FrontEnd = {"_p_FrontEnd", "FrontEnd *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_FsgModel = {"_p_FsgModel", "FsgModel *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_Jsgf = {"_p_Jsgf", "Jsgf *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_JsgfIterator = {"_p_JsgfIterator", "JsgfIterator *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_JsgfRule = {"_p_JsgfRule", "JsgfRule *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_LogMath = {"_p_LogMath", "LogMath *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NGramModel = {"_p_NGramModel", "NGramModel *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NGramModelSet = {"_p_NGramModelSet", "NGramModelSet *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_NGramModelSetIterator = {"_p_NGramModelSetIterator", "NGramModelSetIterator *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_fe_t = {"_p_fe_t", "fe_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_feat_t = {"_p_feat_t", "feat_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_float32 = {"_p_float32", "float32 *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_fsg_model_t = {"_p_fsg_model_t", "fsg_model_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_int = {"_p_int", "int *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_int16 = {"_p_int16", "int16 *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_jsgf_rule_iter_t = {"_p_jsgf_rule_iter_t", "jsgf_rule_iter_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_logmath_t = {"_p_logmath_t", "logmath_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_mfcc_t = {"_p_mfcc_t", "mfcc_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_ngram_file_type_t = {"_p_ngram_file_type_t", "ngram_file_type_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_ngram_model_set_iter_t = {"_p_ngram_model_set_iter_t", "ngram_model_set_iter_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_p_p_mfcc_t = {"_p_p_p_mfcc_t", "mfcc_t ***", 0, 0, (void*)0, 0};
+
+static swig_type_info *swig_type_initial[] = {
+ &_swigt__p_Config,
+ &_swigt__p_Feature,
+ &_swigt__p_FrontEnd,
+ &_swigt__p_FsgModel,
+ &_swigt__p_Jsgf,
+ &_swigt__p_JsgfIterator,
+ &_swigt__p_JsgfRule,
+ &_swigt__p_LogMath,
+ &_swigt__p_NGramModel,
+ &_swigt__p_NGramModelSet,
+ &_swigt__p_NGramModelSetIterator,
+ &_swigt__p_char,
+ &_swigt__p_fe_t,
+ &_swigt__p_feat_t,
+ &_swigt__p_float32,
+ &_swigt__p_fsg_model_t,
+ &_swigt__p_int,
+ &_swigt__p_int16,
+ &_swigt__p_jsgf_rule_iter_t,
+ &_swigt__p_logmath_t,
+ &_swigt__p_mfcc_t,
+ &_swigt__p_ngram_file_type_t,
+ &_swigt__p_ngram_model_set_iter_t,
+ &_swigt__p_p_char,
+ &_swigt__p_p_p_mfcc_t,
+};
+
+static swig_cast_info _swigc__p_Config[] = { {&_swigt__p_Config, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Feature[] = { {&_swigt__p_Feature, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_FrontEnd[] = { {&_swigt__p_FrontEnd, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_FsgModel[] = { {&_swigt__p_FsgModel, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_Jsgf[] = { {&_swigt__p_Jsgf, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_JsgfIterator[] = { {&_swigt__p_JsgfIterator, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_JsgfRule[] = { {&_swigt__p_JsgfRule, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_LogMath[] = { {&_swigt__p_LogMath, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NGramModel[] = { {&_swigt__p_NGramModel, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NGramModelSet[] = { {&_swigt__p_NGramModelSet, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_NGramModelSetIterator[] = { {&_swigt__p_NGramModelSetIterator, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_char[] = { {&_swigt__p_char, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_fe_t[] = { {&_swigt__p_fe_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_feat_t[] = { {&_swigt__p_feat_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_float32[] = { {&_swigt__p_float32, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_fsg_model_t[] = { {&_swigt__p_fsg_model_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_int16[] = { {&_swigt__p_int16, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_jsgf_rule_iter_t[] = { {&_swigt__p_jsgf_rule_iter_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_logmath_t[] = { {&_swigt__p_logmath_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_mfcc_t[] = { {&_swigt__p_mfcc_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_ngram_file_type_t[] = { {&_swigt__p_ngram_file_type_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_ngram_model_set_iter_t[] = { {&_swigt__p_ngram_model_set_iter_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_p_p_mfcc_t[] = { {&_swigt__p_p_p_mfcc_t, 0, 0, 0},{0, 0, 0, 0}};
+
+static swig_cast_info *swig_cast_initial[] = {
+ _swigc__p_Config,
+ _swigc__p_Feature,
+ _swigc__p_FrontEnd,
+ _swigc__p_FsgModel,
+ _swigc__p_Jsgf,
+ _swigc__p_JsgfIterator,
+ _swigc__p_JsgfRule,
+ _swigc__p_LogMath,
+ _swigc__p_NGramModel,
+ _swigc__p_NGramModelSet,
+ _swigc__p_NGramModelSetIterator,
+ _swigc__p_char,
+ _swigc__p_fe_t,
+ _swigc__p_feat_t,
+ _swigc__p_float32,
+ _swigc__p_fsg_model_t,
+ _swigc__p_int,
+ _swigc__p_int16,
+ _swigc__p_jsgf_rule_iter_t,
+ _swigc__p_logmath_t,
+ _swigc__p_mfcc_t,
+ _swigc__p_ngram_file_type_t,
+ _swigc__p_ngram_model_set_iter_t,
+ _swigc__p_p_char,
+ _swigc__p_p_p_mfcc_t,
+};
+
+
+/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
+
+static swig_const_info swig_const_table[] = {
+{0, 0, 0, 0.0, 0, 0}};
+
+#ifdef __cplusplus
+}
+#endif
+/* -----------------------------------------------------------------------------
+ * Type initialization:
+ * This problem is tough by the requirement that no dynamic
+ * memory is used. Also, since swig_type_info structures store pointers to
+ * swig_cast_info structures and swig_cast_info structures store pointers back
+ * to swig_type_info structures, we need some lookup code at initialization.
+ * The idea is that swig generates all the structures that are needed.
+ * The runtime then collects these partially filled structures.
+ * The SWIG_InitializeModule function takes these initial arrays out of
+ * swig_module, and does all the lookup, filling in the swig_module.types
+ * array with the correct data and linking the correct swig_cast_info
+ * structures together.
+ *
+ * The generated swig_type_info structures are assigned staticly to an initial
+ * array. We just loop through that array, and handle each type individually.
+ * First we lookup if this type has been already loaded, and if so, use the
+ * loaded structure instead of the generated one. Then we have to fill in the
+ * cast linked list. The cast data is initially stored in something like a
+ * two-dimensional array. Each row corresponds to a type (there are the same
+ * number of rows as there are in the swig_type_initial array). Each entry in
+ * a column is one of the swig_cast_info structures for that type.
+ * The cast_initial array is actually an array of arrays, because each row has
+ * a variable number of columns. So to actually build the cast linked list,
+ * we find the array of casts associated with the type, and loop through it
+ * adding the casts to the list. The one last trick we need to do is making
+ * sure the type pointer in the swig_cast_info struct is correct.
+ *
+ * First off, we lookup the cast->type name to see if it is already loaded.
+ * There are three cases to handle:
+ * 1) If the cast->type has already been loaded AND the type we are adding
+ * casting info to has not been loaded (it is in this module), THEN we
+ * replace the cast->type pointer with the type pointer that has already
+ * been loaded.
+ * 2) If BOTH types (the one we are adding casting info to, and the
+ * cast->type) are loaded, THEN the cast info has already been loaded by
+ * the previous module so we just ignore it.
+ * 3) Finally, if cast->type has not already been loaded, then we add that
+ * swig_cast_info to the linked list (because the cast->type) pointer will
+ * be correct.
+ * ----------------------------------------------------------------------------- */
+
+#ifdef __cplusplus
+extern "C" {
+#if 0
+} /* c-mode */
+#endif
+#endif
+
+#if 0
+#define SWIGRUNTIME_DEBUG
+#endif
+
+
+SWIGRUNTIME void
+SWIG_InitializeModule(void *clientdata) {
+ size_t i;
+ swig_module_info *module_head, *iter;
+ int found, init;
+
+ /* check to see if the circular list has been setup, if not, set it up */
+ if (swig_module.next==0) {
+ /* Initialize the swig_module */
+ swig_module.type_initial = swig_type_initial;
+ swig_module.cast_initial = swig_cast_initial;
+ swig_module.next = &swig_module;
+ init = 1;
+ } else {
+ init = 0;
+ }
+
+ /* Try and load any already created modules */
+ module_head = SWIG_GetModule(clientdata);
+ if (!module_head) {
+ /* This is the first module loaded for this interpreter */
+ /* so set the swig module into the interpreter */
+ SWIG_SetModule(clientdata, &swig_module);
+ module_head = &swig_module;
+ } else {
+ /* the interpreter has loaded a SWIG module, but has it loaded this one? */
+ found=0;
+ iter=module_head;
+ do {
+ if (iter==&swig_module) {
+ found=1;
+ break;
+ }
+ iter=iter->next;
+ } while (iter!= module_head);
+
+ /* if the is found in the list, then all is done and we may leave */
+ if (found) return;
+ /* otherwise we must add out module into the list */
+ swig_module.next = module_head->next;
+ module_head->next = &swig_module;
+ }
+
+ /* When multiple interpreters are used, a module could have already been initialized in
+ a different interpreter, but not yet have a pointer in this interpreter.
+ In this case, we do not want to continue adding types... everything should be
+ set up already */
+ if (init == 0) return;
+
+ /* Now work on filling in swig_module.types */
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: size %d\n", swig_module.size);
+#endif
+ for (i = 0; i < swig_module.size; ++i) {
+ swig_type_info *type = 0;
+ swig_type_info *ret;
+ swig_cast_info *cast;
+
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
+#endif
+
+ /* if there is another module already loaded */
+ if (swig_module.next != &swig_module) {
+ type = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, swig_module.type_initial[i]->name);
+ }
+ if (type) {
+ /* Overwrite clientdata field */
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: found type %s\n", type->name);
+#endif
+ if (swig_module.type_initial[i]->clientdata) {
+ type->clientdata = swig_module.type_initial[i]->clientdata;
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: found and overwrite type %s \n", type->name);
+#endif
+ }
+ } else {
+ type = swig_module.type_initial[i];
+ }
+
+ /* Insert casting types */
+ cast = swig_module.cast_initial[i];
+ while (cast->type) {
+ /* Don't need to add information already in the list */
+ ret = 0;
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: look cast %s\n", cast->type->name);
+#endif
+ if (swig_module.next != &swig_module) {
+ ret = SWIG_MangledTypeQueryModule(swig_module.next, &swig_module, cast->type->name);
+#ifdef SWIGRUNTIME_DEBUG
+ if (ret) printf("SWIG_InitializeModule: found cast %s\n", ret->name);
+#endif
+ }
+ if (ret) {
+ if (type == swig_module.type_initial[i]) {
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: skip old type %s\n", ret->name);
+#endif
+ cast->type = ret;
+ ret = 0;
+ } else {
+ /* Check for casting already in the list */
+ swig_cast_info *ocast = SWIG_TypeCheck(ret->name, type);
+#ifdef SWIGRUNTIME_DEBUG
+ if (ocast) printf("SWIG_InitializeModule: skip old cast %s\n", ret->name);
+#endif
+ if (!ocast) ret = 0;
+ }
+ }
+
+ if (!ret) {
+#ifdef SWIGRUNTIME_DEBUG
+ printf("SWIG_InitializeModule: adding cast %s\n", cast->type->name);
+#endif
+ if (type->cast) {
+ type->cast->prev = cast;
+ cast->next = type->cast;
+ }
+ type->cast = cast;
+ }
+ cast++;
+ }
+ /* Set entry in modules->types array equal to the type */
+ swig_module.types[i] = type;
+ }
+ swig_module.types[i] = 0;
+
+#ifdef SWIGRUNTIME_DEBUG
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
+ for (i = 0; i < swig_module.size; ++i) {
+ int j = 0;
+ swig_cast_info *cast = swig_module.cast_initial[i];
+ printf("SWIG_InitializeModule: type %d %s\n", i, swig_module.type_initial[i]->name);
+ while (cast->type) {
+ printf("SWIG_InitializeModule: cast type %s\n", cast->type->name);
+ cast++;
+ ++j;
+ }
+ printf("---- Total casts: %d\n",j);
+ }
+ printf("**** SWIG_InitializeModule: Cast List ******\n");
+#endif
+}
+
+/* This function will propagate the clientdata field of type to
+* any new swig_type_info structures that have been added into the list
+* of equivalent types. It is like calling
+* SWIG_TypeClientData(type, clientdata) a second time.
+*/
+SWIGRUNTIME void
+SWIG_PropagateClientData(void) {
+ size_t i;
+ swig_cast_info *equiv;
+ static int init_run = 0;
+
+ if (init_run) return;
+ init_run = 1;
+
+ for (i = 0; i < swig_module.size; i++) {
+ if (swig_module.types[i]->clientdata) {
+ equiv = swig_module.types[i]->cast;
+ while (equiv) {
+ if (!equiv->converter) {
+ if (equiv->type && !equiv->type->clientdata)
+ SWIG_TypeClientData(equiv->type, swig_module.types[i]->clientdata);
+ }
+ equiv = equiv->next;
+ }
+ }
+ }
+}
+
+#ifdef __cplusplus
+#if 0
+{
+ /* c-mode */
+#endif
+}
+#endif
+
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+ /* Python-specific SWIG API */
+#define SWIG_newvarlink() SWIG_Python_newvarlink()
+#define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
+#define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
+
+ /* -----------------------------------------------------------------------------
+ * global variable support code.
+ * ----------------------------------------------------------------------------- */
+
+ typedef struct swig_globalvar {
+ char *name; /* Name of global variable */
+ PyObject *(*get_attr)(void); /* Return the current value */
+ int (*set_attr)(PyObject *); /* Set the value */
+ struct swig_globalvar *next;
+ } swig_globalvar;
+
+ typedef struct swig_varlinkobject {
+ PyObject_HEAD
+ swig_globalvar *vars;
+ } swig_varlinkobject;
+
+ SWIGINTERN PyObject *
+ swig_varlink_repr(swig_varlinkobject *SWIGUNUSEDPARM(v)) {
+#if PY_VERSION_HEX >= 0x03000000
+ return PyUnicode_InternFromString("");
+#else
+ return PyString_FromString("");
+#endif
+ }
+
+ SWIGINTERN PyObject *
+ swig_varlink_str(swig_varlinkobject *v) {
+#if PY_VERSION_HEX >= 0x03000000
+ PyObject *str = PyUnicode_InternFromString("(");
+ PyObject *tail;
+ PyObject *joined;
+ swig_globalvar *var;
+ for (var = v->vars; var; var=var->next) {
+ tail = PyUnicode_FromString(var->name);
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+ if (var->next) {
+ tail = PyUnicode_InternFromString(", ");
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+ }
+ }
+ tail = PyUnicode_InternFromString(")");
+ joined = PyUnicode_Concat(str, tail);
+ Py_DecRef(str);
+ Py_DecRef(tail);
+ str = joined;
+#else
+ PyObject *str = PyString_FromString("(");
+ swig_globalvar *var;
+ for (var = v->vars; var; var=var->next) {
+ PyString_ConcatAndDel(&str,PyString_FromString(var->name));
+ if (var->next) PyString_ConcatAndDel(&str,PyString_FromString(", "));
+ }
+ PyString_ConcatAndDel(&str,PyString_FromString(")"));
+#endif
+ return str;
+ }
+
+ SWIGINTERN int
+ swig_varlink_print(swig_varlinkobject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) {
+ char *tmp;
+ PyObject *str = swig_varlink_str(v);
+ fprintf(fp,"Swig global variables ");
+ fprintf(fp,"%s\n", tmp = SWIG_Python_str_AsChar(str));
+ SWIG_Python_str_DelForPy3(tmp);
+ Py_DECREF(str);
+ return 0;
+ }
+
+ SWIGINTERN void
+ swig_varlink_dealloc(swig_varlinkobject *v) {
+ swig_globalvar *var = v->vars;
+ while (var) {
+ swig_globalvar *n = var->next;
+ free(var->name);
+ free(var);
+ var = n;
+ }
+ }
+
+ SWIGINTERN PyObject *
+ swig_varlink_getattr(swig_varlinkobject *v, char *n) {
+ PyObject *res = NULL;
+ swig_globalvar *var = v->vars;
+ while (var) {
+ if (strcmp(var->name,n) == 0) {
+ res = (*var->get_attr)();
+ break;
+ }
+ var = var->next;
+ }
+ if (res == NULL && !PyErr_Occurred()) {
+ PyErr_SetString(PyExc_NameError,"Unknown C global variable");
+ }
+ return res;
+ }
+
+ SWIGINTERN int
+ swig_varlink_setattr(swig_varlinkobject *v, char *n, PyObject *p) {
+ int res = 1;
+ swig_globalvar *var = v->vars;
+ while (var) {
+ if (strcmp(var->name,n) == 0) {
+ res = (*var->set_attr)(p);
+ break;
+ }
+ var = var->next;
+ }
+ if (res == 1 && !PyErr_Occurred()) {
+ PyErr_SetString(PyExc_NameError,"Unknown C global variable");
+ }
+ return res;
+ }
+
+ SWIGINTERN PyTypeObject*
+ swig_varlink_type(void) {
+ static char varlink__doc__[] = "Swig var link object";
+ static PyTypeObject varlink_type;
+ static int type_init = 0;
+ if (!type_init) {
+ const PyTypeObject tmp = {
+ /* PyObject header changed in Python 3 */
+#if PY_VERSION_HEX >= 0x03000000
+ PyVarObject_HEAD_INIT(NULL, 0)
+#else
+ PyObject_HEAD_INIT(NULL)
+ 0, /* ob_size */
+#endif
+ (char *)"swigvarlink", /* tp_name */
+ sizeof(swig_varlinkobject), /* tp_basicsize */
+ 0, /* tp_itemsize */
+ (destructor) swig_varlink_dealloc, /* tp_dealloc */
+ (printfunc) swig_varlink_print, /* tp_print */
+ (getattrfunc) swig_varlink_getattr, /* tp_getattr */
+ (setattrfunc) swig_varlink_setattr, /* tp_setattr */
+ 0, /* tp_compare */
+ (reprfunc) swig_varlink_repr, /* tp_repr */
+ 0, /* tp_as_number */
+ 0, /* tp_as_sequence */
+ 0, /* tp_as_mapping */
+ 0, /* tp_hash */
+ 0, /* tp_call */
+ (reprfunc) swig_varlink_str, /* tp_str */
+ 0, /* tp_getattro */
+ 0, /* tp_setattro */
+ 0, /* tp_as_buffer */
+ 0, /* tp_flags */
+ varlink__doc__, /* tp_doc */
+ 0, /* tp_traverse */
+ 0, /* tp_clear */
+ 0, /* tp_richcompare */
+ 0, /* tp_weaklistoffset */
+#if PY_VERSION_HEX >= 0x02020000
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
+#endif
+#if PY_VERSION_HEX >= 0x02030000
+ 0, /* tp_del */
+#endif
+#if PY_VERSION_HEX >= 0x02060000
+ 0, /* tp_version */
+#endif
+#ifdef COUNT_ALLOCS
+ 0,0,0,0 /* tp_alloc -> tp_next */
+#endif
+ };
+ varlink_type = tmp;
+ type_init = 1;
+#if PY_VERSION_HEX < 0x02020000
+ varlink_type.ob_type = &PyType_Type;
+#else
+ if (PyType_Ready(&varlink_type) < 0)
+ return NULL;
+#endif
+ }
+ return &varlink_type;
+ }
+
+ /* Create a variable linking object for use later */
+ SWIGINTERN PyObject *
+ SWIG_Python_newvarlink(void) {
+ swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type());
+ if (result) {
+ result->vars = 0;
+ }
+ return ((PyObject*) result);
+ }
+
+ SWIGINTERN void
+ SWIG_Python_addvarlink(PyObject *p, char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) {
+ swig_varlinkobject *v = (swig_varlinkobject *) p;
+ swig_globalvar *gv = (swig_globalvar *) malloc(sizeof(swig_globalvar));
+ if (gv) {
+ size_t size = strlen(name)+1;
+ gv->name = (char *)malloc(size);
+ if (gv->name) {
+ strncpy(gv->name,name,size);
+ gv->get_attr = get_attr;
+ gv->set_attr = set_attr;
+ gv->next = v->vars;
+ }
+ }
+ v->vars = gv;
+ }
+
+ SWIGINTERN PyObject *
+ SWIG_globals(void) {
+ static PyObject *_SWIG_globals = 0;
+ if (!_SWIG_globals) _SWIG_globals = SWIG_newvarlink();
+ return _SWIG_globals;
+ }
+
+ /* -----------------------------------------------------------------------------
+ * constants/methods manipulation
+ * ----------------------------------------------------------------------------- */
+
+ /* Install Constants */
+ SWIGINTERN void
+ SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]) {
+ PyObject *obj = 0;
+ size_t i;
+ for (i = 0; constants[i].type; ++i) {
+ switch(constants[i].type) {
+ case SWIG_PY_POINTER:
+ obj = SWIG_InternalNewPointerObj(constants[i].pvalue, *(constants[i]).ptype,0);
+ break;
+ case SWIG_PY_BINARY:
+ obj = SWIG_NewPackedObj(constants[i].pvalue, constants[i].lvalue, *(constants[i].ptype));
+ break;
+ default:
+ obj = 0;
+ break;
+ }
+ if (obj) {
+ PyDict_SetItemString(d, constants[i].name, obj);
+ Py_DECREF(obj);
+ }
+ }
+ }
+
+ /* -----------------------------------------------------------------------------*/
+ /* Fix SwigMethods to carry the callback ptrs when needed */
+ /* -----------------------------------------------------------------------------*/
+
+ SWIGINTERN void
+ SWIG_Python_FixMethods(PyMethodDef *methods,
+ swig_const_info *const_table,
+ swig_type_info **types,
+ swig_type_info **types_initial) {
+ size_t i;
+ for (i = 0; methods[i].ml_name; ++i) {
+ const char *c = methods[i].ml_doc;
+ if (c && (c = strstr(c, "swig_ptr: "))) {
+ int j;
+ swig_const_info *ci = 0;
+ const char *name = c + 10;
+ for (j = 0; const_table[j].type; ++j) {
+ if (strncmp(const_table[j].name, name,
+ strlen(const_table[j].name)) == 0) {
+ ci = &(const_table[j]);
+ break;
+ }
+ }
+ if (ci) {
+ void *ptr = (ci->type == SWIG_PY_POINTER) ? ci->pvalue : 0;
+ if (ptr) {
+ size_t shift = (ci->ptype) - types;
+ swig_type_info *ty = types_initial[shift];
+ size_t ldoc = (c - methods[i].ml_doc);
+ size_t lptr = strlen(ty->name)+2*sizeof(void*)+2;
+ char *ndoc = (char*)malloc(ldoc + lptr + 10);
+ if (ndoc) {
+ char *buff = ndoc;
+ strncpy(buff, methods[i].ml_doc, ldoc);
+ buff += ldoc;
+ strncpy(buff, "swig_ptr: ", 10);
+ buff += 10;
+ SWIG_PackVoidPtr(buff, ptr, ty->name, lptr);
+ methods[i].ml_doc = ndoc;
+ }
+ }
+ }
+ }
+ }
+ }
+
+#ifdef __cplusplus
+}
+#endif
+
+/* -----------------------------------------------------------------------------*
+ * Partial Init method
+ * -----------------------------------------------------------------------------*/
+
+#ifdef __cplusplus
+extern "C"
+#endif
+
+SWIGEXPORT
+#if PY_VERSION_HEX >= 0x03000000
+PyObject*
+#else
+void
+#endif
+SWIG_init(void) {
+ PyObject *m, *d, *md;
+#if PY_VERSION_HEX >= 0x03000000
+ static struct PyModuleDef SWIG_module = {
+# if PY_VERSION_HEX >= 0x03020000
+ PyModuleDef_HEAD_INIT,
+# else
+ {
+ PyObject_HEAD_INIT(NULL)
+ NULL, /* m_init */
+ 0, /* m_index */
+ NULL, /* m_copy */
+ },
+# endif
+ (char *) SWIG_name,
+ NULL,
+ -1,
+ SwigMethods,
+ NULL,
+ NULL,
+ NULL,
+ NULL
+ };
+#endif
+
+#if defined(SWIGPYTHON_BUILTIN)
+ static SwigPyClientData SwigPyObject_clientdata = {
+ 0, 0, 0, 0, 0, 0, 0
+ };
+ static PyGetSetDef this_getset_def = {
+ (char *)"this", &SwigPyBuiltin_ThisClosure, NULL, NULL, NULL
+ };
+ static SwigPyGetSet thisown_getset_closure = {
+ (PyCFunction) SwigPyObject_own,
+ (PyCFunction) SwigPyObject_own
+ };
+ static PyGetSetDef thisown_getset_def = {
+ (char *)"thisown", SwigPyBuiltin_GetterClosure, SwigPyBuiltin_SetterClosure, NULL, &thisown_getset_closure
+ };
+ PyObject *metatype_args;
+ PyTypeObject *builtin_pytype;
+ int builtin_base_count;
+ swig_type_info *builtin_basetype;
+ PyObject *tuple;
+ PyGetSetDescrObject *static_getset;
+ PyTypeObject *metatype;
+ SwigPyClientData *cd;
+ PyObject *public_interface, *public_symbol;
+ PyObject *this_descr;
+ PyObject *thisown_descr;
+ int i;
+
+ (void)builtin_pytype;
+ (void)builtin_base_count;
+ (void)builtin_basetype;
+ (void)tuple;
+ (void)static_getset;
+
+ /* metatype is used to implement static member variables. */
+ metatype_args = Py_BuildValue("(s(O){})", "SwigPyObjectType", &PyType_Type);
+ assert(metatype_args);
+ metatype = (PyTypeObject *) PyType_Type.tp_call((PyObject *) &PyType_Type, metatype_args, NULL);
+ assert(metatype);
+ Py_DECREF(metatype_args);
+ metatype->tp_setattro = (setattrofunc) &SwigPyObjectType_setattro;
+ assert(PyType_Ready(metatype) >= 0);
+#endif
+
+ /* Fix SwigMethods to carry the callback ptrs when needed */
+ SWIG_Python_FixMethods(SwigMethods, swig_const_table, swig_types, swig_type_initial);
+
+#if PY_VERSION_HEX >= 0x03000000
+ m = PyModule_Create(&SWIG_module);
+#else
+ m = Py_InitModule((char *) SWIG_name, SwigMethods);
+#endif
+ md = d = PyModule_GetDict(m);
+ (void)md;
+
+ SWIG_InitializeModule(0);
+
+#ifdef SWIGPYTHON_BUILTIN
+ SwigPyObject_stype = SWIG_MangledTypeQuery("_p_SwigPyObject");
+ assert(SwigPyObject_stype);
+ cd = (SwigPyClientData*) SwigPyObject_stype->clientdata;
+ if (!cd) {
+ SwigPyObject_stype->clientdata = &SwigPyObject_clientdata;
+ SwigPyObject_clientdata.pytype = SwigPyObject_TypeOnce();
+ } else if (SwigPyObject_TypeOnce()->tp_basicsize != cd->pytype->tp_basicsize) {
+ PyErr_SetString(PyExc_RuntimeError, "Import error: attempted to load two incompatible swig-generated modules.");
+# if PY_VERSION_HEX >= 0x03000000
+ return NULL;
+# else
+ return;
+# endif
+ }
+
+ /* All objects have a 'this' attribute */
+ this_descr = PyDescr_NewGetSet(SwigPyObject_type(), &this_getset_def);
+ (void)this_descr;
+
+ /* All objects have a 'thisown' attribute */
+ thisown_descr = PyDescr_NewGetSet(SwigPyObject_type(), &thisown_getset_def);
+ (void)thisown_descr;
+
+ public_interface = PyList_New(0);
+ public_symbol = 0;
+ (void)public_symbol;
+
+ PyDict_SetItemString(md, "__all__", public_interface);
+ Py_DECREF(public_interface);
+ for (i = 0; SwigMethods[i].ml_name != NULL; ++i)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, SwigMethods[i].ml_name);
+ for (i = 0; swig_const_table[i].name != 0; ++i)
+ SwigPyBuiltin_AddPublicSymbol(public_interface, swig_const_table[i].name);
+#endif
+
+ SWIG_InstallConstants(d,swig_const_table);
+
+#if PY_VERSION_HEX >= 0x03000000
+ return m;
+#else
+ return;
+#endif
+}
+
diff --git a/sphinxbase-5prealpha/test/Makefile b/sphinxbase-5prealpha/test/Makefile
index 5ff8146..823d927 100644
--- a/sphinxbase-5prealpha/test/Makefile
+++ b/sphinxbase-5prealpha/test/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -184,14 +184,14 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -225,7 +225,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -261,10 +261,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -296,7 +296,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -343,8 +343,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -461,7 +461,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/test/Makefile.in b/sphinxbase-5prealpha/test/Makefile.in
index 6a76cfe..ef14356 100644
--- a/sphinxbase-5prealpha/test/Makefile.in
+++ b/sphinxbase-5prealpha/test/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -343,8 +343,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -461,7 +461,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/test/regression/Makefile b/sphinxbase-5prealpha/test/regression/Makefile
index 795cbad..c5532c6 100644
--- a/sphinxbase-5prealpha/test/regression/Makefile
+++ b/sphinxbase-5prealpha/test/regression/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/regression/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -329,14 +329,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/testfuncs.sh.in \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -370,7 +370,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -406,10 +406,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/regression
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/regression
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/regression
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/regression
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -441,7 +441,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -517,8 +517,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -664,7 +664,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS:
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -770,7 +770,10 @@ test-sphinx_pitch.sh.log: test-sphinx_pitch.sh
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/test/regression/Makefile.in b/sphinxbase-5prealpha/test/regression/Makefile.in
index e5249a4..c3bb3c7 100644
--- a/sphinxbase-5prealpha/test/regression/Makefile.in
+++ b/sphinxbase-5prealpha/test/regression/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -517,8 +517,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -664,7 +664,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS:
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -770,7 +770,10 @@ test-sphinx_pitch.sh.log: test-sphinx_pitch.sh
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/test/regression/testfuncs.sh b/sphinxbase-5prealpha/test/regression/testfuncs.sh
index 3d69bf6..ec7c493 100644
--- a/sphinxbase-5prealpha/test/regression/testfuncs.sh
+++ b/sphinxbase-5prealpha/test/regression/testfuncs.sh
@@ -1,7 +1,7 @@
# Utility functions and parameters for regression tests
# Predefined directories you may need
-# Stupid broken RedHat autoconf doesn't do /home/pi/speech2text/sphinxbase-5prealpha
+# Stupid broken RedHat autoconf doesn't do /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
builddir="../.."
sourcedir="../.."
tests=$sourcedir/test
diff --git a/sphinxbase-5prealpha/test/unit/Makefile b/sphinxbase-5prealpha/test/unit/Makefile
index 71e1691..7ab718d 100644
--- a/sphinxbase-5prealpha/test/unit/Makefile
+++ b/sphinxbase-5prealpha/test/unit/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -186,14 +186,14 @@ am__relativize = \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -227,7 +227,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -263,10 +263,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -298,7 +298,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -362,8 +362,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -482,7 +482,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/test/unit/Makefile.in b/sphinxbase-5prealpha/test/unit/Makefile.in
index ba3992c..fcfb263 100644
--- a/sphinxbase-5prealpha/test/unit/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -136,7 +136,7 @@ am__recursive_targets = \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
- distdir
+ distdir distdir-am
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
@@ -362,8 +362,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -482,7 +482,10 @@ cscopelist-am: $(am__tagged_files)
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
diff --git a/sphinxbase-5prealpha/test/unit/test_alloc/Makefile b/sphinxbase-5prealpha/test/unit/test_alloc/Makefile
index 3ecf1ba..35c873c 100644
--- a/sphinxbase-5prealpha/test/unit/test_alloc/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_alloc/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_alloc/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -153,7 +153,12 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_ckd_alloc.Po \
+ ./$(DEPDIR)/test_ckd_alloc_abort.Po \
+ ./$(DEPDIR)/test_ckd_alloc_catch.Po \
+ ./$(DEPDIR)/test_ckd_alloc_fail.Po \
+ ./$(DEPDIR)/test_listelem_alloc.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -411,14 +416,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -452,7 +457,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -488,10 +493,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_alloc
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_alloc
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_alloc
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_alloc
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -523,7 +528,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -578,8 +583,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -626,11 +631,17 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_ckd_alloc.Po
-include ./$(DEPDIR)/test_ckd_alloc_abort.Po
-include ./$(DEPDIR)/test_ckd_alloc_catch.Po
-include ./$(DEPDIR)/test_ckd_alloc_fail.Po
-include ./$(DEPDIR)/test_listelem_alloc.Po
+include ./$(DEPDIR)/test_ckd_alloc.Po # am--include-marker
+include ./$(DEPDIR)/test_ckd_alloc_abort.Po # am--include-marker
+include ./$(DEPDIR)/test_ckd_alloc_catch.Po # am--include-marker
+include ./$(DEPDIR)/test_ckd_alloc_fail.Po # am--include-marker
+include ./$(DEPDIR)/test_listelem_alloc.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -831,7 +842,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -902,7 +913,10 @@ test_listelem_alloc.log: test_listelem_alloc$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -977,7 +991,11 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_ckd_alloc.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_abort.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_catch.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_fail.Po
+ -rm -f ./$(DEPDIR)/test_listelem_alloc.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -1023,7 +1041,11 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_ckd_alloc.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_abort.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_catch.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_fail.Po
+ -rm -f ./$(DEPDIR)/test_listelem_alloc.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1044,16 +1066,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_alloc/Makefile.in b/sphinxbase-5prealpha/test/unit/test_alloc/Makefile.in
index 6d03358..743a191 100644
--- a/sphinxbase-5prealpha/test/unit/test_alloc/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_alloc/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -153,7 +153,12 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_ckd_alloc.Po \
+ ./$(DEPDIR)/test_ckd_alloc_abort.Po \
+ ./$(DEPDIR)/test_ckd_alloc_catch.Po \
+ ./$(DEPDIR)/test_ckd_alloc_fail.Po \
+ ./$(DEPDIR)/test_listelem_alloc.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -578,8 +583,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -626,11 +631,17 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ckd_alloc.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ckd_alloc_abort.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ckd_alloc_catch.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ckd_alloc_fail.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_listelem_alloc.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ckd_alloc.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ckd_alloc_abort.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ckd_alloc_catch.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ckd_alloc_fail.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_listelem_alloc.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -831,7 +842,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -902,7 +913,10 @@ test_listelem_alloc.log: test_listelem_alloc$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -977,7 +991,11 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_ckd_alloc.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_abort.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_catch.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_fail.Po
+ -rm -f ./$(DEPDIR)/test_listelem_alloc.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -1023,7 +1041,11 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_ckd_alloc.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_abort.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_catch.Po
+ -rm -f ./$(DEPDIR)/test_ckd_alloc_fail.Po
+ -rm -f ./$(DEPDIR)/test_listelem_alloc.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1044,16 +1066,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile b/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile
index 53c574a..d72b88b 100644
--- a/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_bitvec/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -129,7 +129,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_bitvec.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -383,14 +384,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -424,7 +425,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -460,10 +461,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_bitvec
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_bitvec
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_bitvec
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_bitvec
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -495,7 +496,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -549,8 +550,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -581,7 +582,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_bitvec.Po
+include ./$(DEPDIR)/test_bitvec.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -782,7 +789,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -825,7 +832,10 @@ test_bitvec.log: test_bitvec$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -900,7 +910,7 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_bitvec.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -946,7 +956,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_bitvec.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -967,16 +977,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile.in b/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile.in
index c0119ec..96d7608 100644
--- a/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_bitvec/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -129,7 +129,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_bitvec.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -549,8 +550,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -581,7 +582,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bitvec.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bitvec.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -782,7 +789,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -825,7 +832,10 @@ test_bitvec.log: test_bitvec$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -900,7 +910,7 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_bitvec.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -946,7 +956,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_bitvec.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -967,16 +977,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_case/Makefile b/sphinxbase-5prealpha/test/unit/test_case/Makefile
index bcfe5fe..6563347 100644
--- a/sphinxbase-5prealpha/test/unit/test_case/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_case/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_case/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -126,7 +126,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/chgCase.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -377,14 +378,14 @@ am__set_b = \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -418,7 +419,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -454,10 +455,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_case
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_case
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_case
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_case
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -489,7 +490,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -552,8 +553,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -584,7 +585,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/chgCase.Po
+include ./$(DEPDIR)/chgCase.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -785,7 +792,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -821,7 +828,10 @@ recheck: all $(check_PROGRAMS)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -896,7 +906,7 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/chgCase.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -942,7 +952,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/chgCase.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -963,16 +973,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_case/Makefile.in b/sphinxbase-5prealpha/test/unit/test_case/Makefile.in
index 658cc8f..1862774 100644
--- a/sphinxbase-5prealpha/test/unit/test_case/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_case/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -126,7 +126,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/chgCase.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -552,8 +553,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -584,7 +585,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chgCase.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chgCase.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -785,7 +792,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -821,7 +828,10 @@ recheck: all $(check_PROGRAMS)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -896,7 +906,7 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/chgCase.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -942,7 +952,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/chgCase.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -963,16 +973,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile b/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile
index 5c61e40..6e2d556 100644
--- a/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_cmdln/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -137,7 +137,10 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/cmdln_parse.Po \
+ ./$(DEPDIR)/cmdln_parse_multiple.Po \
+ ./$(DEPDIR)/cmdln_parse_r.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -388,14 +391,14 @@ am__set_b = \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -429,7 +432,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -465,10 +468,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_cmdln
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_cmdln
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_cmdln
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_cmdln
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -500,7 +503,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -566,8 +569,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -606,9 +609,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/cmdln_parse.Po
-include ./$(DEPDIR)/cmdln_parse_multiple.Po
-include ./$(DEPDIR)/cmdln_parse_r.Po
+include ./$(DEPDIR)/cmdln_parse.Po # am--include-marker
+include ./$(DEPDIR)/cmdln_parse_multiple.Po # am--include-marker
+include ./$(DEPDIR)/cmdln_parse_r.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -809,7 +818,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -845,7 +854,10 @@ recheck: all $(check_PROGRAMS)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -921,7 +933,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/cmdln_parse.Po
+ -rm -f ./$(DEPDIR)/cmdln_parse_multiple.Po
+ -rm -f ./$(DEPDIR)/cmdln_parse_r.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -967,7 +981,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/cmdln_parse.Po
+ -rm -f ./$(DEPDIR)/cmdln_parse_multiple.Po
+ -rm -f ./$(DEPDIR)/cmdln_parse_r.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -988,16 +1004,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile.in b/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile.in
index 0d12200..d84ff7c 100644
--- a/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_cmdln/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -137,7 +137,10 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/cmdln_parse.Po \
+ ./$(DEPDIR)/cmdln_parse_multiple.Po \
+ ./$(DEPDIR)/cmdln_parse_r.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -566,8 +569,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -606,9 +609,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmdln_parse.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmdln_parse_multiple.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmdln_parse_r.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmdln_parse.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmdln_parse_multiple.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cmdln_parse_r.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -809,7 +818,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -845,7 +854,10 @@ recheck: all $(check_PROGRAMS)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -921,7 +933,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/cmdln_parse.Po
+ -rm -f ./$(DEPDIR)/cmdln_parse_multiple.Po
+ -rm -f ./$(DEPDIR)/cmdln_parse_r.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -967,7 +981,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/cmdln_parse.Po
+ -rm -f ./$(DEPDIR)/cmdln_parse_multiple.Po
+ -rm -f ./$(DEPDIR)/cmdln_parse_r.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -988,16 +1004,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_fe/Makefile b/sphinxbase-5prealpha/test/unit/test_fe/Makefile
index bfa21cf..7a543d2 100644
--- a/sphinxbase-5prealpha/test/unit/test_fe/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_fe/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_fe/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -134,7 +134,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_fe.Po ./$(DEPDIR)/test_pitch.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -388,14 +389,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -429,7 +430,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -465,10 +466,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_fe
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_fe
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_fe
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_fe
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -500,7 +501,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -554,8 +555,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -590,8 +591,14 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_fe.Po
-include ./$(DEPDIR)/test_pitch.Po
+include ./$(DEPDIR)/test_fe.Po # am--include-marker
+include ./$(DEPDIR)/test_pitch.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -792,7 +799,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -842,7 +849,10 @@ test_pitch.log: test_pitch$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -917,7 +927,8 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_fe.Po
+ -rm -f ./$(DEPDIR)/test_pitch.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -963,7 +974,8 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_fe.Po
+ -rm -f ./$(DEPDIR)/test_pitch.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -984,16 +996,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_fe/Makefile.in b/sphinxbase-5prealpha/test/unit/test_fe/Makefile.in
index afeb8bb..d6e7707 100644
--- a/sphinxbase-5prealpha/test/unit/test_fe/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_fe/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -134,7 +134,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_fe.Po ./$(DEPDIR)/test_pitch.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -554,8 +555,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -590,8 +591,14 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fe.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_pitch.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fe.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_pitch.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -792,7 +799,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -842,7 +849,10 @@ test_pitch.log: test_pitch$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -917,7 +927,8 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_fe.Po
+ -rm -f ./$(DEPDIR)/test_pitch.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -963,7 +974,8 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_fe.Po
+ -rm -f ./$(DEPDIR)/test_pitch.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -984,16 +996,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_feat/Makefile b/sphinxbase-5prealpha/test/unit/test_feat/Makefile
index bbbe1be..9fbc0d4 100644
--- a/sphinxbase-5prealpha/test/unit/test_feat/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_feat/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_feat/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -146,7 +146,10 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_feat.Po \
+ ./$(DEPDIR)/test_feat_fe.Po ./$(DEPDIR)/test_feat_live.Po \
+ ./$(DEPDIR)/test_subvq.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -401,14 +404,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -442,7 +445,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -478,10 +481,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_feat
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_feat
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_feat
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_feat
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -513,7 +516,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -569,8 +572,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -613,10 +616,16 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_feat.Po
-include ./$(DEPDIR)/test_feat_fe.Po
-include ./$(DEPDIR)/test_feat_live.Po
-include ./$(DEPDIR)/test_subvq.Po
+include ./$(DEPDIR)/test_feat.Po # am--include-marker
+include ./$(DEPDIR)/test_feat_fe.Po # am--include-marker
+include ./$(DEPDIR)/test_feat_live.Po # am--include-marker
+include ./$(DEPDIR)/test_subvq.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -817,7 +826,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -874,7 +883,10 @@ test_subvq.log: test_subvq$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -950,7 +962,10 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_feat.Po
+ -rm -f ./$(DEPDIR)/test_feat_fe.Po
+ -rm -f ./$(DEPDIR)/test_feat_live.Po
+ -rm -f ./$(DEPDIR)/test_subvq.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -996,7 +1011,10 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_feat.Po
+ -rm -f ./$(DEPDIR)/test_feat_fe.Po
+ -rm -f ./$(DEPDIR)/test_feat_live.Po
+ -rm -f ./$(DEPDIR)/test_subvq.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1017,16 +1035,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_feat/Makefile.in b/sphinxbase-5prealpha/test/unit/test_feat/Makefile.in
index a9032af..f64de91 100644
--- a/sphinxbase-5prealpha/test/unit/test_feat/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_feat/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -146,7 +146,10 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_feat.Po \
+ ./$(DEPDIR)/test_feat_fe.Po ./$(DEPDIR)/test_feat_live.Po \
+ ./$(DEPDIR)/test_subvq.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -569,8 +572,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -613,10 +616,16 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_feat.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_feat_fe.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_feat_live.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_subvq.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_feat.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_feat_fe.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_feat_live.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_subvq.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -817,7 +826,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -874,7 +883,10 @@ test_subvq.log: test_subvq$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -950,7 +962,10 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_feat.Po
+ -rm -f ./$(DEPDIR)/test_feat_fe.Po
+ -rm -f ./$(DEPDIR)/test_feat_live.Po
+ -rm -f ./$(DEPDIR)/test_subvq.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -996,7 +1011,10 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_feat.Po
+ -rm -f ./$(DEPDIR)/test_feat_fe.Po
+ -rm -f ./$(DEPDIR)/test_feat_live.Po
+ -rm -f ./$(DEPDIR)/test_subvq.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1017,16 +1035,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_fsg/Makefile b/sphinxbase-5prealpha/test/unit/test_fsg/Makefile
index b6a7dc9..0ac4bb4 100644
--- a/sphinxbase-5prealpha/test/unit/test_fsg/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_fsg/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_fsg/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -139,7 +139,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_fsg_jsgf.Po \
+ ./$(DEPDIR)/test_fsg_read.Po ./$(DEPDIR)/test_fsg_write_fsm.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -393,14 +395,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -434,7 +436,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -470,10 +472,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_fsg
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_fsg
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_fsg
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_fsg
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -505,7 +507,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -561,8 +563,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -601,9 +603,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_fsg_jsgf.Po
-include ./$(DEPDIR)/test_fsg_read.Po
-include ./$(DEPDIR)/test_fsg_write_fsm.Po
+include ./$(DEPDIR)/test_fsg_jsgf.Po # am--include-marker
+include ./$(DEPDIR)/test_fsg_read.Po # am--include-marker
+include ./$(DEPDIR)/test_fsg_write_fsm.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -804,7 +812,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -861,7 +869,10 @@ test_fsg_write_fsm.log: test_fsg_write_fsm$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -936,7 +947,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_fsg_jsgf.Po
+ -rm -f ./$(DEPDIR)/test_fsg_read.Po
+ -rm -f ./$(DEPDIR)/test_fsg_write_fsm.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -982,7 +995,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_fsg_jsgf.Po
+ -rm -f ./$(DEPDIR)/test_fsg_read.Po
+ -rm -f ./$(DEPDIR)/test_fsg_write_fsm.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1003,16 +1018,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_fsg/Makefile.in b/sphinxbase-5prealpha/test/unit/test_fsg/Makefile.in
index 3600b34..e95d4ac 100644
--- a/sphinxbase-5prealpha/test/unit/test_fsg/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_fsg/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -139,7 +139,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_fsg_jsgf.Po \
+ ./$(DEPDIR)/test_fsg_read.Po ./$(DEPDIR)/test_fsg_write_fsm.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -561,8 +563,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -601,9 +603,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fsg_jsgf.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fsg_read.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fsg_write_fsm.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fsg_jsgf.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fsg_read.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fsg_write_fsm.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -804,7 +812,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -861,7 +869,10 @@ test_fsg_write_fsm.log: test_fsg_write_fsm$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -936,7 +947,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_fsg_jsgf.Po
+ -rm -f ./$(DEPDIR)/test_fsg_read.Po
+ -rm -f ./$(DEPDIR)/test_fsg_write_fsm.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -982,7 +995,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_fsg_jsgf.Po
+ -rm -f ./$(DEPDIR)/test_fsg_read.Po
+ -rm -f ./$(DEPDIR)/test_fsg_write_fsm.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1003,16 +1018,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_hash/Makefile b/sphinxbase-5prealpha/test/unit/test_hash/Makefile
index 5c97df0..e73d674 100644
--- a/sphinxbase-5prealpha/test/unit/test_hash/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_hash/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_hash/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -141,7 +141,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/deletehash.Po \
+ ./$(DEPDIR)/displayhash.Po ./$(DEPDIR)/test_hash_iter.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -395,14 +397,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -436,7 +438,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -472,10 +474,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_hash
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_hash
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_hash
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_hash
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -507,7 +509,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -573,8 +575,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -613,9 +615,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/deletehash.Po
-include ./$(DEPDIR)/displayhash.Po
-include ./$(DEPDIR)/test_hash_iter.Po
+include ./$(DEPDIR)/deletehash.Po # am--include-marker
+include ./$(DEPDIR)/displayhash.Po # am--include-marker
+include ./$(DEPDIR)/test_hash_iter.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -816,7 +824,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -859,7 +867,10 @@ test_hash_iter.log: test_hash_iter$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -935,7 +946,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/deletehash.Po
+ -rm -f ./$(DEPDIR)/displayhash.Po
+ -rm -f ./$(DEPDIR)/test_hash_iter.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -981,7 +994,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/deletehash.Po
+ -rm -f ./$(DEPDIR)/displayhash.Po
+ -rm -f ./$(DEPDIR)/test_hash_iter.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1002,16 +1017,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_hash/Makefile.in b/sphinxbase-5prealpha/test/unit/test_hash/Makefile.in
index 558efc9..927b737 100644
--- a/sphinxbase-5prealpha/test/unit/test_hash/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_hash/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -141,7 +141,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/deletehash.Po \
+ ./$(DEPDIR)/displayhash.Po ./$(DEPDIR)/test_hash_iter.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -573,8 +575,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -613,9 +615,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deletehash.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/displayhash.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_hash_iter.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deletehash.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/displayhash.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_hash_iter.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -816,7 +824,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -859,7 +867,10 @@ test_hash_iter.log: test_hash_iter$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -935,7 +946,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/deletehash.Po
+ -rm -f ./$(DEPDIR)/displayhash.Po
+ -rm -f ./$(DEPDIR)/test_hash_iter.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -981,7 +994,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/deletehash.Po
+ -rm -f ./$(DEPDIR)/displayhash.Po
+ -rm -f ./$(DEPDIR)/test_hash_iter.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1002,16 +1017,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile b/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile
index b6ef157..8f6d922 100644
--- a/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_lineiter/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -129,7 +129,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_lineiter.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -383,14 +384,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -424,7 +425,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -460,10 +461,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_lineiter
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_lineiter
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_lineiter
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_lineiter
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -495,7 +496,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -551,8 +552,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -583,7 +584,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_lineiter.Po
+include ./$(DEPDIR)/test_lineiter.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -784,7 +791,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -827,7 +834,10 @@ test_lineiter.log: test_lineiter$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -903,7 +913,7 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_lineiter.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -949,7 +959,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_lineiter.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -970,16 +980,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile.in b/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile.in
index e76b12e..0d93068 100644
--- a/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_lineiter/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -129,7 +129,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_lineiter.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -551,8 +552,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -583,7 +584,13 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lineiter.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lineiter.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -784,7 +791,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -827,7 +834,10 @@ test_lineiter.log: test_lineiter$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -903,7 +913,7 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_lineiter.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -949,7 +959,7 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_lineiter.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -970,16 +980,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_logmath/Makefile b/sphinxbase-5prealpha/test/unit/test_logmath/Makefile
index d79b43b..b0ea216 100644
--- a/sphinxbase-5prealpha/test/unit/test_logmath/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_logmath/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_logmath/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -141,7 +141,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_log_int16.Po \
+ ./$(DEPDIR)/test_log_int8.Po ./$(DEPDIR)/test_log_shifted.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -395,14 +397,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -436,7 +438,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -472,10 +474,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_logmath
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_logmath
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_logmath
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_logmath
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -507,7 +509,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -561,8 +563,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -601,9 +603,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_log_int16.Po
-include ./$(DEPDIR)/test_log_int8.Po
-include ./$(DEPDIR)/test_log_shifted.Po
+include ./$(DEPDIR)/test_log_int16.Po # am--include-marker
+include ./$(DEPDIR)/test_log_int8.Po # am--include-marker
+include ./$(DEPDIR)/test_log_shifted.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -804,7 +812,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -861,7 +869,10 @@ test_log_shifted.log: test_log_shifted$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -937,7 +948,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_log_int16.Po
+ -rm -f ./$(DEPDIR)/test_log_int8.Po
+ -rm -f ./$(DEPDIR)/test_log_shifted.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -983,7 +996,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_log_int16.Po
+ -rm -f ./$(DEPDIR)/test_log_int8.Po
+ -rm -f ./$(DEPDIR)/test_log_shifted.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1004,16 +1019,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_logmath/Makefile.in b/sphinxbase-5prealpha/test/unit/test_logmath/Makefile.in
index 14b8556..f256222 100644
--- a/sphinxbase-5prealpha/test/unit/test_logmath/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_logmath/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -141,7 +141,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_log_int16.Po \
+ ./$(DEPDIR)/test_log_int8.Po ./$(DEPDIR)/test_log_shifted.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -561,8 +563,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -601,9 +603,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_log_int16.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_log_int8.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_log_shifted.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_log_int16.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_log_int8.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_log_shifted.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -804,7 +812,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -861,7 +869,10 @@ test_log_shifted.log: test_log_shifted$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -937,7 +948,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_log_int16.Po
+ -rm -f ./$(DEPDIR)/test_log_int8.Po
+ -rm -f ./$(DEPDIR)/test_log_shifted.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -983,7 +996,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_log_int16.Po
+ -rm -f ./$(DEPDIR)/test_log_int8.Po
+ -rm -f ./$(DEPDIR)/test_log_shifted.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1004,16 +1019,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_matrix/Makefile b/sphinxbase-5prealpha/test/unit/test_matrix/Makefile
index 9466086..a3c0f6f 100644
--- a/sphinxbase-5prealpha/test/unit/test_matrix/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_matrix/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_matrix/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -137,7 +137,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_determinant.Po \
+ ./$(DEPDIR)/test_invert.Po ./$(DEPDIR)/test_solve.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -388,14 +390,14 @@ am__set_b = \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -429,7 +431,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -465,10 +467,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_matrix
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_matrix
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_matrix
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_matrix
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -500,7 +502,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -567,8 +569,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -607,9 +609,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_determinant.Po
-include ./$(DEPDIR)/test_invert.Po
-include ./$(DEPDIR)/test_solve.Po
+include ./$(DEPDIR)/test_determinant.Po # am--include-marker
+include ./$(DEPDIR)/test_invert.Po # am--include-marker
+include ./$(DEPDIR)/test_solve.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -810,7 +818,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -846,7 +854,10 @@ recheck: all $(check_PROGRAMS)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -922,7 +933,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_determinant.Po
+ -rm -f ./$(DEPDIR)/test_invert.Po
+ -rm -f ./$(DEPDIR)/test_solve.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -968,7 +981,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_determinant.Po
+ -rm -f ./$(DEPDIR)/test_invert.Po
+ -rm -f ./$(DEPDIR)/test_solve.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -989,16 +1004,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_matrix/Makefile.in b/sphinxbase-5prealpha/test/unit/test_matrix/Makefile.in
index 81b3ec7..3b72577 100644
--- a/sphinxbase-5prealpha/test/unit/test_matrix/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_matrix/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -137,7 +137,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_determinant.Po \
+ ./$(DEPDIR)/test_invert.Po ./$(DEPDIR)/test_solve.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -567,8 +569,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -607,9 +609,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_determinant.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_invert.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_solve.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_determinant.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_invert.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_solve.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -810,7 +818,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -846,7 +854,10 @@ recheck: all $(check_PROGRAMS)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -922,7 +933,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_determinant.Po
+ -rm -f ./$(DEPDIR)/test_invert.Po
+ -rm -f ./$(DEPDIR)/test_solve.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -968,7 +981,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_determinant.Po
+ -rm -f ./$(DEPDIR)/test_invert.Po
+ -rm -f ./$(DEPDIR)/test_solve.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -989,16 +1004,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_ngram/Makefile b/sphinxbase-5prealpha/test/unit/test_ngram/Makefile
index 60cc097..c64dce4 100644
--- a/sphinxbase-5prealpha/test/unit/test_ngram/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_ngram/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_ngram/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -161,7 +161,11 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_lm_add.Po \
+ ./$(DEPDIR)/test_lm_casefold.Po ./$(DEPDIR)/test_lm_class.Po \
+ ./$(DEPDIR)/test_lm_read.Po ./$(DEPDIR)/test_lm_score.Po \
+ ./$(DEPDIR)/test_lm_set.Po ./$(DEPDIR)/test_lm_write.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -417,14 +421,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -458,7 +462,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -494,10 +498,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_ngram
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_ngram
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_ngram
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_ngram
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -529,7 +533,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -602,8 +606,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -658,13 +662,19 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_lm_add.Po
-include ./$(DEPDIR)/test_lm_casefold.Po
-include ./$(DEPDIR)/test_lm_class.Po
-include ./$(DEPDIR)/test_lm_read.Po
-include ./$(DEPDIR)/test_lm_score.Po
-include ./$(DEPDIR)/test_lm_set.Po
-include ./$(DEPDIR)/test_lm_write.Po
+include ./$(DEPDIR)/test_lm_add.Po # am--include-marker
+include ./$(DEPDIR)/test_lm_casefold.Po # am--include-marker
+include ./$(DEPDIR)/test_lm_class.Po # am--include-marker
+include ./$(DEPDIR)/test_lm_read.Po # am--include-marker
+include ./$(DEPDIR)/test_lm_score.Po # am--include-marker
+include ./$(DEPDIR)/test_lm_set.Po # am--include-marker
+include ./$(DEPDIR)/test_lm_write.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -865,7 +875,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -950,7 +960,10 @@ test_lm_write.log: test_lm_write$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -1026,7 +1039,13 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_lm_add.Po
+ -rm -f ./$(DEPDIR)/test_lm_casefold.Po
+ -rm -f ./$(DEPDIR)/test_lm_class.Po
+ -rm -f ./$(DEPDIR)/test_lm_read.Po
+ -rm -f ./$(DEPDIR)/test_lm_score.Po
+ -rm -f ./$(DEPDIR)/test_lm_set.Po
+ -rm -f ./$(DEPDIR)/test_lm_write.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -1072,7 +1091,13 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_lm_add.Po
+ -rm -f ./$(DEPDIR)/test_lm_casefold.Po
+ -rm -f ./$(DEPDIR)/test_lm_class.Po
+ -rm -f ./$(DEPDIR)/test_lm_read.Po
+ -rm -f ./$(DEPDIR)/test_lm_score.Po
+ -rm -f ./$(DEPDIR)/test_lm_set.Po
+ -rm -f ./$(DEPDIR)/test_lm_write.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1093,16 +1118,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_ngram/Makefile.in b/sphinxbase-5prealpha/test/unit/test_ngram/Makefile.in
index e3eccc8..3207e39 100644
--- a/sphinxbase-5prealpha/test/unit/test_ngram/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_ngram/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -161,7 +161,11 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_lm_add.Po \
+ ./$(DEPDIR)/test_lm_casefold.Po ./$(DEPDIR)/test_lm_class.Po \
+ ./$(DEPDIR)/test_lm_read.Po ./$(DEPDIR)/test_lm_score.Po \
+ ./$(DEPDIR)/test_lm_set.Po ./$(DEPDIR)/test_lm_write.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -602,8 +606,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -658,13 +662,19 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_add.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_casefold.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_class.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_read.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_score.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_set.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_write.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_add.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_casefold.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_class.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_read.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_score.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_set.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_lm_write.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -865,7 +875,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -950,7 +960,10 @@ test_lm_write.log: test_lm_write$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -1026,7 +1039,13 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_lm_add.Po
+ -rm -f ./$(DEPDIR)/test_lm_casefold.Po
+ -rm -f ./$(DEPDIR)/test_lm_class.Po
+ -rm -f ./$(DEPDIR)/test_lm_read.Po
+ -rm -f ./$(DEPDIR)/test_lm_score.Po
+ -rm -f ./$(DEPDIR)/test_lm_set.Po
+ -rm -f ./$(DEPDIR)/test_lm_write.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -1072,7 +1091,13 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_lm_add.Po
+ -rm -f ./$(DEPDIR)/test_lm_casefold.Po
+ -rm -f ./$(DEPDIR)/test_lm_class.Po
+ -rm -f ./$(DEPDIR)/test_lm_read.Po
+ -rm -f ./$(DEPDIR)/test_lm_score.Po
+ -rm -f ./$(DEPDIR)/test_lm_set.Po
+ -rm -f ./$(DEPDIR)/test_lm_write.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1093,16 +1118,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_string/Makefile b/sphinxbase-5prealpha/test/unit/test_string/Makefile
index 53fdf98..ed5adb0 100644
--- a/sphinxbase-5prealpha/test/unit/test_string/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_string/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_string/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -133,7 +133,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/strtest.Po ./$(DEPDIR)/test_atof.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -386,14 +387,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -427,7 +428,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -463,10 +464,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_string
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_string
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_string
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_string
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -498,7 +499,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -558,8 +559,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -594,8 +595,14 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/strtest.Po
-include ./$(DEPDIR)/test_atof.Po
+include ./$(DEPDIR)/strtest.Po # am--include-marker
+include ./$(DEPDIR)/test_atof.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -796,7 +803,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -839,7 +846,10 @@ test_atof.log: test_atof$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -914,7 +924,8 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/strtest.Po
+ -rm -f ./$(DEPDIR)/test_atof.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -960,7 +971,8 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/strtest.Po
+ -rm -f ./$(DEPDIR)/test_atof.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -981,16 +993,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_string/Makefile.in b/sphinxbase-5prealpha/test/unit/test_string/Makefile.in
index 304f1e3..bb7fc4a 100644
--- a/sphinxbase-5prealpha/test/unit/test_string/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_string/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -133,7 +133,8 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/strtest.Po ./$(DEPDIR)/test_atof.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -558,8 +559,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -594,8 +595,14 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtest.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_atof.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strtest.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_atof.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -796,7 +803,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -839,7 +846,10 @@ test_atof.log: test_atof$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -914,7 +924,8 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/strtest.Po
+ -rm -f ./$(DEPDIR)/test_atof.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -960,7 +971,8 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/strtest.Po
+ -rm -f ./$(DEPDIR)/test_atof.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -981,16 +993,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_thread/Makefile b/sphinxbase-5prealpha/test/unit/test_thread/Makefile
index 511f876..0ad318a 100644
--- a/sphinxbase-5prealpha/test/unit/test_thread/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_thread/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_thread/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -139,7 +139,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_event.Po \
+ ./$(DEPDIR)/test_msgq.Po ./$(DEPDIR)/test_thread.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -393,14 +395,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -434,7 +436,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -470,10 +472,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_thread
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_thread
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_thread
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_thread
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -505,7 +507,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -561,8 +563,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -601,9 +603,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_event.Po
-include ./$(DEPDIR)/test_msgq.Po
-include ./$(DEPDIR)/test_thread.Po
+include ./$(DEPDIR)/test_event.Po # am--include-marker
+include ./$(DEPDIR)/test_msgq.Po # am--include-marker
+include ./$(DEPDIR)/test_thread.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -804,7 +812,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -861,7 +869,10 @@ test_msgq.log: test_msgq$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -937,7 +948,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_event.Po
+ -rm -f ./$(DEPDIR)/test_msgq.Po
+ -rm -f ./$(DEPDIR)/test_thread.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -983,7 +996,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_event.Po
+ -rm -f ./$(DEPDIR)/test_msgq.Po
+ -rm -f ./$(DEPDIR)/test_thread.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1004,16 +1019,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_thread/Makefile.in b/sphinxbase-5prealpha/test/unit/test_thread/Makefile.in
index cab470b..bf5cfd4 100644
--- a/sphinxbase-5prealpha/test/unit/test_thread/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_thread/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -139,7 +139,9 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_event.Po \
+ ./$(DEPDIR)/test_msgq.Po ./$(DEPDIR)/test_thread.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -561,8 +563,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -601,9 +603,15 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_event.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_msgq.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_thread.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_event.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_msgq.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_thread.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -804,7 +812,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -861,7 +869,10 @@ test_msgq.log: test_msgq$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -937,7 +948,9 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_event.Po
+ -rm -f ./$(DEPDIR)/test_msgq.Po
+ -rm -f ./$(DEPDIR)/test_thread.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -983,7 +996,9 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_event.Po
+ -rm -f ./$(DEPDIR)/test_msgq.Po
+ -rm -f ./$(DEPDIR)/test_thread.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1004,16 +1019,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_util/Makefile b/sphinxbase-5prealpha/test/unit/test_util/Makefile
index d865ac6..76c70c6 100644
--- a/sphinxbase-5prealpha/test/unit/test_util/Makefile
+++ b/sphinxbase-5prealpha/test/unit/test_util/Makefile
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# test/unit/test_util/Makefile. Generated from Makefile.in by configure.
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -161,7 +161,11 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I. -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_bit_encode.Po \
+ ./$(DEPDIR)/test_bitarr.Po ./$(DEPDIR)/test_build_directory.Po \
+ ./$(DEPDIR)/test_filename.Po ./$(DEPDIR)/test_fopen.Po \
+ ./$(DEPDIR)/test_heap.Po ./$(DEPDIR)/test_readfile.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -417,14 +421,14 @@ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \
$(top_srcdir)/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing aclocal-1.15
+ACLOCAL = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing aclocal-1.16
AMTAR = $${TAR-tar}
AM_DEFAULT_VERBOSITY = 1
AR = ar
-AUTOCONF = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoconf
-AUTOHEADER = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing autoheader
-AUTOMAKE = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing automake-1.15
-AWK = gawk
+AUTOCONF = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoconf
+AUTOHEADER = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing autoheader
+AUTOMAKE = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing automake-1.16
+AWK = mawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -g -O2 -Wall
@@ -458,7 +462,7 @@ LIPO =
LN_S = ln -s
LTLIBOBJS =
LT_SYS_LIBRARY_PATH =
-MAKEINFO = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/missing makeinfo
+MAKEINFO = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/missing makeinfo
MANIFEST_TOOL = :
MKDIR_P = /bin/mkdir -p
NM = /usr/bin/nm -B
@@ -494,10 +498,10 @@ SWIG = /usr/bin/swig
SWIG_LIB = /usr/share/swig3.0
VERSION = 5prealpha
YACC = bison -y
-abs_builddir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_util
-abs_srcdir = /home/pi/speech2text/sphinxbase-5prealpha/test/unit/test_util
-abs_top_builddir = /home/pi/speech2text/sphinxbase-5prealpha
-abs_top_srcdir = /home/pi/speech2text/sphinxbase-5prealpha
+abs_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_util
+abs_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/test/unit/test_util
+abs_top_builddir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
+abs_top_srcdir = /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
ac_ct_AR = ar
ac_ct_CC = gcc
ac_ct_DUMPBIN =
@@ -529,7 +533,7 @@ host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
-install_sh = ${SHELL} /home/pi/speech2text/sphinxbase-5prealpha/install-sh
+install_sh = ${SHELL} /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
@@ -586,8 +590,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -642,13 +646,19 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-include ./$(DEPDIR)/test_bit_encode.Po
-include ./$(DEPDIR)/test_bitarr.Po
-include ./$(DEPDIR)/test_build_directory.Po
-include ./$(DEPDIR)/test_filename.Po
-include ./$(DEPDIR)/test_fopen.Po
-include ./$(DEPDIR)/test_heap.Po
-include ./$(DEPDIR)/test_readfile.Po
+include ./$(DEPDIR)/test_bit_encode.Po # am--include-marker
+include ./$(DEPDIR)/test_bitarr.Po # am--include-marker
+include ./$(DEPDIR)/test_build_directory.Po # am--include-marker
+include ./$(DEPDIR)/test_filename.Po # am--include-marker
+include ./$(DEPDIR)/test_fopen.Po # am--include-marker
+include ./$(DEPDIR)/test_heap.Po # am--include-marker
+include ./$(DEPDIR)/test_readfile.Po # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -849,7 +859,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -934,7 +944,10 @@ test_readfile.log: test_readfile$(EXEEXT)
# $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
# "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -1010,7 +1023,13 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_bit_encode.Po
+ -rm -f ./$(DEPDIR)/test_bitarr.Po
+ -rm -f ./$(DEPDIR)/test_build_directory.Po
+ -rm -f ./$(DEPDIR)/test_filename.Po
+ -rm -f ./$(DEPDIR)/test_fopen.Po
+ -rm -f ./$(DEPDIR)/test_heap.Po
+ -rm -f ./$(DEPDIR)/test_readfile.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -1056,7 +1075,13 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_bit_encode.Po
+ -rm -f ./$(DEPDIR)/test_bitarr.Po
+ -rm -f ./$(DEPDIR)/test_build_directory.Po
+ -rm -f ./$(DEPDIR)/test_filename.Po
+ -rm -f ./$(DEPDIR)/test_fopen.Po
+ -rm -f ./$(DEPDIR)/test_heap.Po
+ -rm -f ./$(DEPDIR)/test_readfile.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1077,16 +1102,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/test_util/Makefile.in b/sphinxbase-5prealpha/test/unit/test_util/Makefile.in
index 8bfe991..1304a17 100644
--- a/sphinxbase-5prealpha/test/unit/test_util/Makefile.in
+++ b/sphinxbase-5prealpha/test/unit/test_util/Makefile.in
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2018 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -161,7 +161,11 @@ am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/test_bit_encode.Po \
+ ./$(DEPDIR)/test_bitarr.Po ./$(DEPDIR)/test_build_directory.Po \
+ ./$(DEPDIR)/test_filename.Po ./$(DEPDIR)/test_fopen.Po \
+ ./$(DEPDIR)/test_heap.Po ./$(DEPDIR)/test_readfile.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -586,8 +590,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -642,13 +646,19 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bit_encode.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bitarr.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_build_directory.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_filename.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fopen.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_heap.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_readfile.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bit_encode.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bitarr.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_build_directory.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_filename.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_fopen.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_heap.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_readfile.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+ @$(MKDIR_P) $(@D)
+ @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -849,7 +859,7 @@ $(TEST_SUITE_LOG): $(TEST_LOGS)
fi; \
$$success || exit 1
-check-TESTS:
+check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@@ -934,7 +944,10 @@ test_readfile.log: test_readfile$(EXEEXT)
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
-distdir: $(DISTFILES)
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
@@ -1010,7 +1023,13 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_bit_encode.Po
+ -rm -f ./$(DEPDIR)/test_bitarr.Po
+ -rm -f ./$(DEPDIR)/test_build_directory.Po
+ -rm -f ./$(DEPDIR)/test_filename.Po
+ -rm -f ./$(DEPDIR)/test_fopen.Po
+ -rm -f ./$(DEPDIR)/test_heap.Po
+ -rm -f ./$(DEPDIR)/test_readfile.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
@@ -1056,7 +1075,13 @@ install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
- -rm -rf ./$(DEPDIR)
+ -rm -f ./$(DEPDIR)/test_bit_encode.Po
+ -rm -f ./$(DEPDIR)/test_bitarr.Po
+ -rm -f ./$(DEPDIR)/test_build_directory.Po
+ -rm -f ./$(DEPDIR)/test_filename.Po
+ -rm -f ./$(DEPDIR)/test_fopen.Po
+ -rm -f ./$(DEPDIR)/test_heap.Po
+ -rm -f ./$(DEPDIR)/test_readfile.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
@@ -1077,16 +1102,16 @@ uninstall-am:
.MAKE: check-am install-am install-strip
-.PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
- clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
- ctags ctags-am distclean distclean-compile distclean-generic \
- distclean-libtool distclean-tags distdir dvi dvi-am html \
- html-am info info-am install install-am install-data \
- install-data-am install-dvi install-dvi-am install-exec \
- install-exec-am install-html install-html-am install-info \
- install-info-am install-man install-pdf install-pdf-am \
- install-ps install-ps-am install-strip installcheck \
- installcheck-am installdirs maintainer-clean \
+.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
+ check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
+ cscopelist-am ctags ctags-am distclean distclean-compile \
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
+ dvi-am html html-am info info-am install install-am \
+ install-data install-data-am install-dvi install-dvi-am \
+ install-exec install-exec-am install-html install-html-am \
+ install-info install-info-am install-man install-pdf \
+ install-pdf-am install-ps install-ps-am install-strip \
+ installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
recheck tags tags-am uninstall uninstall-am
diff --git a/sphinxbase-5prealpha/test/unit/testfuncs.sh b/sphinxbase-5prealpha/test/unit/testfuncs.sh
index 060c5f0..596e972 100644
--- a/sphinxbase-5prealpha/test/unit/testfuncs.sh
+++ b/sphinxbase-5prealpha/test/unit/testfuncs.sh
@@ -1,7 +1,7 @@
# Utility functions and parameters for regression tests
# Predefined directories you may need
-# Stupid broken CMU Facilities autoconf doesn't do /home/pi/speech2text/sphinxbase-5prealpha
+# Stupid broken CMU Facilities autoconf doesn't do /home/pi/sphinxSpeech2Text/sphinxbase-5prealpha
builddir=../"../.."
sourcedir=../"../.."
tests=$sourcedir/test