-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure
executable file
·981 lines (835 loc) · 20.8 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
#!/bin/sh
TMPC=tmp.c
TMPB=tmpb
GMAKE="no"
MAKE="make"
QMAKE5_NAMES="qmake qmake5 qmake-qt5 qmake-5"
OSDEFS=""
OSLIBS=""
OSLIBS_HW=""
OSLIBS_INET=""
OSLIBS_DL=""
OSLIBS_THREAD=""
__cc=cc
__cxx=c++
__defprefix=""
__prefix=""
__enable_debug=no
__enable_png=yes
__enable_gui=yes
__wt_internal=yes
__qmake=""
__plugins_liteon_noprobe=no
__cross_compilation=no
__binsuff=""
__libpref="lib"
__libsuff=".so"
lpng_iopts=""
lpng_ldflags=""
LPNG_DEFS=""
PLUGIN_DEFS=""
DEFS=""
qt_ver=""
qt_dir=""
cleanup()
{
rm -f $TMPC $TMPB$__binsuff
}
copy_sources()
{
__src_dir=`dirname $0`
__src_path=`realpath $__src_dir`
cp -a "$__src_path"/* `pwd`/
}
check_make()
{
echo -n "Checking for make... "
x=`gmake -v 2>/dev/null`
if test "$?" -gt 0; then
x=`make -v 2>/dev/null`
if test "$?" -gt 0; then
echo "no"
echo "Make not found! Can't continue"
exit
fi
MAKE="make"
else
MAKE="gmake"
fi
echo "yes"
echo -n "Checking if we have GNU Make... "
if test "$OSL" = "mingw32" ; then
make_t0=`$MAKE -v | tr '[A-Z]' '[a-z]' | grep make | grep ver | cut -d ' ' -f 1`
else
make_t0=`$MAKE -v | tr '[A-Z]' '[a-z]' | grep make | cut -d ' ' -f 1`
fi
if test "$make_t0" = "gnu" ; then
GMAKE="yes"
else
GMAKE="no"
fi
echo $GMAKE
}
check_compiler()
{
echo -n "Checking C compiler... "
cc_name=`$__cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1`
cc_ver=`$__cc -dumpversion 2>&1`
if test "$?" -gt 0; then
cc_name="not found"
cc_ver=""
fi
echo -n $cc_name $cc_ver
case $cc_name in
"not found")
echo ""
echo "** No C compiler found, can not continue!"
exit 1
;;
gcc)
echo ""
;;
*)
echo " only gcc tested!"
;;
esac
echo -n "Checking C++ compiler... "
cxx_name=`$__cxx -v 2>&1 | tail -n 1 | cut -d ' ' -f 1`
cxx_ver=`$__cxx -dumpversion 2>&1`
if test "$?" -gt 0; then
cxx_name="not found"
cxx_ver=""
fi
echo $cxx_name $cxx_ver
if test "$cxx_name" = "not found" ; then
echo ""
echo "** No C++ compiler found, can not continue!"
exit 1
fi
}
check_libpng()
{
__enable_png=no
echo -n "Checking for libpng... "
lpng_ver=`libpng-config --version 2>/dev/null`
if test "$?" -gt 0; then
lpng_ver="not found"
fi
echo $lpng_ver
if test "$lpng_ver" != "not found" ; then
echo -n " libpng compiler flags: "
lpng_iopts=`libpng-config --I_opts`
echo $lpng_iopts
echo -n " libpng linker flags: "
lpng_ldflags=`libpng-config --ldflags`
echo $lpng_ldflags
echo -n "Checking png.h presense... "
echo "
#include <png.h>
int main(int ac, char** av) { return 0; }
" > $TMPC
$__cc $lpng_iopts $TMPC -o $TMPB 2>&1 1>/dev/null
if test "$?" -gt 0; then
echo "no"
lpng_iopts=""
lpng_ldflags=""
else
echo "yes"
echo -n "Checking png.h usability... "
echo "
#include <png.h>
int main(int ac, char** av) {
png_structp png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
return 0; }
" > $TMPC
$__cc $lpng_iopts $TMPC $lpng_ldflags -o $TMPB 2>&1 1>/dev/null
if test "$?" -gt 0; then
echo "no"
lpng_iopts=""
lpng_ldflags=""
else
echo "yes"
__enable_png=yes
LPNG_DEFS="-DUSE_LIBPNG"
fi
fi
fi
}
check_offset64()
{
echo -n "Checking off_t size with _FILE_OFFSET_BITS = 64... "
echo "
#define _FILE_OFFSET_BITS 64
#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
int main(int ac, char** av) {
printf(\"%d\", sizeof(off_t));
return 0; }
" > $TMPC
if test "$__cross_compilation" = "no"; then
#$__cc $TMPC -o $TMPB 2>/dev/null 1>/dev/null
$__cc $TMPC -o $TMPB
if test "$?" -eq 0; then
OFFT_SIZE=`./$TMPB`
echo $OFFT_SIZE
if test "$OFFT_SIZE" -eq 8; then
OSDEFS=$OSDEFS" -DOFFT_64BIT"
fi
else
echo "no off_t type defined!"
exit 1
fi
fi
echo -n "Checking for fopen64()... "
echo "
#define _FILE_OFFSET_BITS 64
#include <stdio.h>
int main(int ac, char** av) {
FILE* f;
f = fopen64(\"f\",\"r+\");
return 0; }
" > $TMPC
$__cc $TMPC -o $TMPB 2>/dev/null 1>/dev/null
if test "$?" -gt 0; then
echo "no"
else
echo "yes"
OSDEFS=$OSDEFS" -DHAVE_FOPEN64"
fi
echo -n "Checking for fseek64()... "
echo "
#define _FILE_OFFSET_BITS 64
#include <stdio.h>
int main(int ac, char** av) {
FILE* f;
fseek64(f,0, SEEK_SET);
return 0; }
" > $TMPC
$__cc $TMPC -o $TMPB 2>/dev/null 1>/dev/null
if test "$?" -gt 0; then
echo "no"
else
echo "yes"
OSDEFS=$OSDEFS" -DHAVE_FSEEK64"
fi
echo -n "Checking for fseeko()... "
echo "
#define _FILE_OFFSET_BITS 64
#include <stdio.h>
int main(int ac, char** av) {
FILE* f;
fseeko(f,0, SEEK_SET);
return 0; }
" > $TMPC
$__cc $TMPC -o $TMPB 2>/dev/null 1>/dev/null
if test "$?" -gt 0; then
echo "no"
else
echo "yes"
OSDEFS=$OSDEFS" -DHAVE_FSEEKO"
fi
}
qt_check_qmake()
{
qt_ver=`$1 -v 2>/dev/null`
if test "$?" -gt 0; then
qt_ver="not found"
qt_dir=""
else
qt_ver=`$1 -v 2>/dev/null | tail -n 1 | cut -d' ' -f 4 `
qt_dir=`$1 -v 2>/dev/null | tail -n 1 | cut -d' ' -f 6 `
fi
case $qt_ver in
"not found")
__qmake=""
;;
5.*)
__qmake=$1
;;
*)
echo "Unknown/unsupported Qt version"
__qmake=""
;;
esac
}
qt_check_default()
{
for qmake5 in $QMAKE5_NAMES ; do
qt_check_qmake $qmake5
if test "$qt_dir" != "" ; then
return
fi
done
}
ckeck_qt5()
{
__enable_gui=no
echo -n "Checking for Qt5... "
if test "$__qmake" = "" ; then
qt_check_default
else
qt_check_qmake $__qmake
fi
if test "$qt_dir" = "" ; then
echo "no, GUI will not be compiled.
If you really have Qt5 and want to build GUI try --qmake=/path/to/qmake"
else
__enable_gui=yes
echo "$qt_dir ($qt_ver), qmake command: $__qmake"
fi
}
create_makefile_top()
{
echo "* Makefile"
rm -f Makefile
echo "#ifndef __CONFIG_H__" > config.h
echo "#define __CONFIG_H__" >> config.h
echo "#define INSTALL_PREFIX \"$__prefix\"" >> config.h
echo "#endif //__CONFIG_H__" >> config.h
echo "PREFIX = $__prefix
BINDIR = $__bindir
SBINDIR = $__sbindir
LIBDIR = $__libdir
PLUGINDIR = $__plugindir
INCDIR = $__incdir
MANDIR = $__mandir
BINSUFF = $__binsuff
LIBS_HW = $OSLIBS_HW
LIBS_INET = $OSLIBS_INET
LIBS_DL = $OSLIBS_DL
LIBS_THREAD = $OSLIBS_THREAD
LPNG_INC = $lpng_iopts
LPNG_LIB = $lpng_ldflags
" >> Makefile
echo "CXXFLAGS += -Wall -O2 $OSDEFS $LPNG_DEFS $PLUGIN_DEFS $DEFS" >> Makefile
echo "CFLAGS += -Wall -O2 $OSDEFS $LPNG_DEFS $PLUGIN_DEFS $DEFS" >> Makefile
if test "$__cross_compilation" = "yes" ; then
echo "# additional cross-compilatio options" >> Makefile
echo "CC=$__cxx" >> Makefile
echo "CXX=$__cc" >> Makefile
echo "CXXFLAGS += -fPIC" >> Makefile
echo "CFLAGS += -fPIC" >> Makefile
echo "export CXX CC" >> Makefile
echo "export CXXFLAGS CFLAGS" >> Makefile
echo "export LPNG_INC LPNG_LIB" >> Makefile
echo "export PREFIX BINDIR SBINDIR LIBDIR PLUGINDIR INCDIR MANDIR BINSUFF LIBS_HW LIBS_INET LIBS_DL LIBS_THREAD" >> Makefile
fi
if test "$__enable_debug" = "yes" ; then
echo "# additional debug options" >> Makefile
echo "CXXFLAGS += -g" >> Makefile
echo "CFLAGS += -g" >> Makefile
fi
if test "$OSL" = "darwin" ; then
echo "QMAKESPEC=macx-g++" >> Makefile
echo "export QMAKESPEC" >> Makefile
fi
if test "$GMAKE" = "yes" ; then
echo "export PREFIX BINDIR SBINDIR LIBDIR PLUGINDIR INCDIR MANDIR BINSUFF LIBS_HW LIBS_INET LIBS_DL LIBS_THREAD" >> Makefile
echo "export LPNG_INC LPNG_LIB" >> Makefile
echo "export CXXFLAGS CFLAGS" >> Makefile
fi
echo "
all: cli gui
cli: lib console plugins man" >> Makefile
echo "
lib:
\$(MAKE) -C lib
console: lib
\$(MAKE) -C console
plugins: lib
\$(MAKE) -C plugins
man:
\$(MAKE) -C man
" >> Makefile
echo "
gui: lib" >> Makefile
if test "$__enable_gui" = "yes" ; then
echo " \$(MAKE) -C gui" >> Makefile
fi
echo "
clean:" >> Makefile
echo " \$(MAKE) -C lib clean
\$(MAKE) -C console clean
\$(MAKE) -C plugins clean
\$(MAKE) -C man clean" >> Makefile
if test "$__enable_gui" = "yes" ; then
echo " \$(MAKE) -C gui clean" >> Makefile
fi
echo "
install: all cli_install gui_install" >> Makefile
echo "
cli_install:" >> Makefile
echo " \$(MAKE) -C lib install
\$(MAKE) -C console install
\$(MAKE) -C plugins install
\$(MAKE) -C man install" >> Makefile
echo "
gui_install:" >> Makefile
if test "$__enable_gui" = "yes" ; then
echo " \$(MAKE) -C gui install" >> Makefile
fi
echo "
uninstall: cli_uninstall gui_uninstall" >> Makefile
echo "
cli_uninstall:" >> Makefile
echo " \$(MAKE) -C lib uninstall
\$(MAKE) -C console uninstall
\$(MAKE) -C plugins uninstall
\$(MAKE) -C man uninstall" >> Makefile
echo "
gui_uninstall:" >> Makefile
if test "$__enable_gui" = "yes" ; then
echo " \$(MAKE) -C gui uninstall" >> Makefile
fi
echo "
help:
@echo \"\"
@echo \"Alailable targets:\"
@echo \"all - build all\"
@echo \"cli - build libs and console tools\"
@echo \"gui - build gui only\"
@echo \"plugins - build plugins only\"
@echo \"install - install all\"
@echo \"cli_install - install libs and console tools\"
@echo \"gui_install - install gui only\"
@echo \"\"
@echo \"clean - clean source tree from object files\"
@echo \"uninstall - uninstall all\"
@echo \"cli_uninstall - uninstall libs and console tools\"
@echo \"gui_uninstall - uninstall gui only\"" >> Makefile
echo "
.PHONY: all clean cli lib console plugins man nogui gui install cli_install gui_install uninstall cli_uninstall gui_uninstall help" >> Makefile
}
create_makefile_gui()
{
mf="gui/Makefile"
echo "* $mf"
rm -f $mf
mkdir -p `dirname $mf`
if test "$OSL" = "netbsd" ; then
qt_dir="/usr/pkg/qt5"
echo "QTDIR=$qt_dir" >> $mf
echo "LDFLAGS+=-Wl,-R/usr/X11R7/lib" >> $mf
fi
echo "QTDIR=$qt_dir" >> $mf
echo "QMAKE5= $__qmake" >> $mf
if test "$GMAKE" = "yes" ; then
echo "export QTDIR QMAKE5" >> $mf
fi
echo "
all: Makefile.qmake" >> $mf
if test "$OSL" = "mingw32" ; then
if test "$__enable_debug" = "yes" ; then
echo " \$(MAKE) -f Makefile.qmake debug $@" >> $mf
else
echo " \$(MAKE) -f Makefile.qmake release $@" >> $mf
fi
else
echo " \$(MAKE) -f Makefile.qmake $@" >> $mf
if test "$__enable_debug" = "no" ; then
if test "$OSL" = "darwin" ; then
# echo " strip qpxtool.app/Contents/MacOS/qpxtool" >> $mf
echo " " >> $mf
else
echo " strip --strip-unneeded qpxtool" >> $mf
fi
fi
fi
echo " lrelease -verbose qpxtool.pro" >> $mf
echo "
clean: Makefile.qmake
rm -f Makefile.qmake
rm -f qpxtool$__binsuff
rm -f obj/*
rm -f moc/*
rm -f *~
rm -f src/*~
rm -f include/*~
rm -f locale/*.qm
rm -f qrc_qpxtool.cpp" >> $mf
case "$OSL" in
"mingw32")
echo "
install: Makefile.qmake" >> $mf
if test "$__enable_debug" = "yes" ; then
echo " install -m 755 debug/qpxtool.exe \$(DESTDIR)\$(BINDIR)" >> $mf
else
echo " install -m 755 release/qpxtool.exe \$(DESTDIR)\$(BINDIR)" >> $mf
fi
echo " mkdir -p \$(DESTDIR)\$(BINDIR)/locale" >> $mf
echo " install -m 644 locale/*.qm \$(DESTDIR)\$(BINDIR)/locale" >> $mf
echo "
uninstall:
rm -f \$(DESTDIR)\$(BINDIR)/qpxtool.exe
rm -rf \$(DESTDIR)\$(BINDIR)/locale" >> $mf
;;
*)
echo "
install: Makefile.qmake" >> $mf
if test "$OSL" = "darwin" ; then
echo " install -m 755 qpxtool.app/Contents/MacOS/qpxtool \$(DESTDIR)\$(BINDIR)/qpxtool" >> $mf
else
echo " install -m 755 qpxtool \$(DESTDIR)\$(BINDIR)/qpxtool" >> $mf
fi
echo " mkdir -p \$(DESTDIR)\$(PREFIX)/share/qpxtool/locale" >> $mf
echo " install -m 644 locale/*.qm \$(DESTDIR)\$(PREFIX)/share/qpxtool/locale" >> $mf
echo " mkdir -p \$(DESTDIR)\$(PREFIX)/share/pixmaps" >> $mf
echo " install -m 644 images/q.png \$(DESTDIR)\$(PREFIX)/share/pixmaps/qpxtool.png" >> $mf
echo " mkdir -p \$(DESTDIR)\$(PREFIX)/share/applications" >> $mf
echo " install -m 644 qpxtool.desktop \$(DESTDIR)\$(PREFIX)/share/applications/qpxtool.desktop" >> $mf
echo "
uninstall:
rm -f \$(DESTDIR)\$(BINDIR)/qpxtool
rm -rf \$(DESTDIR)\$(PREFIX)/share/qpxtool
rm -f \$(DESTDIR)\$(PREFIX)/share/pixmaps/qpxtool.png
rm -f \$(DESTDIR)\$(PREFIX)/share/applications/qpxtool.desktop" >> $mf
;;
esac
echo "
Makefile.qmake:
rm -f Makefile.qmake
\$(QMAKE5) LIBS+=-L../lib/lib LIBS+=-lqpxtransport $QDEBUG -o Makefile.qmake" >> $mf
echo "
.PHONY: all clean install uninstall" >> $mf
}
create_makefile_lib()
{
mf="lib/Makefile.lib"
echo "* $mf"
rm -f $mf
mkdir -p `dirname $mf`
case "$OSL" in
darwin)
echo "
LIB_SHORT = $__libpref\$(LIBN)$__libsuff
LIB = $__libpref\$(LIBN).\$(VER_MAJOR).\$(VER_MINOR).\$(VER_MICRO)$__libsuff
CXXFLAGS += -I. -I./include -I../include
LDFLAGS += -dynamiclib -Wl -install_name \$(LIBDIR)/\$(LIB_SHORT)
" >> $mf
;;
mingw32)
echo "
LIB_SHORT = $__libpref\$(LIBN)$__libsuff
LIB = \$(LIB_SHORT)
CXXFLAGS += -I. -I./include -I../include
LDFLAGS += -shared -Wl,-soname,\$(LIB_SHORT)
" >> $mf
;;
*)
echo "
LIB_SHORT = $__libpref\$(LIBN)$__libsuff
LIB_SONAME = \$(LIB_SHORT).\$(VER_MAJOR)
LIB_SONAMEV= \$(LIB_SONAME).\$(VER_MINOR)
LIB = \$(LIB_SONAMEV).\$(VER_MICRO)
CXXFLAGS += -I. -I./include -I../include
LDFLAGS += -shared -Wl,-soname,\$(LIB_SONAME)
" >> $mf
;;
esac
echo "
all: \$(LIB)
\$(LIB): \$(OBJS)
\$(CXX) \$(CXXFLAGS) \$(LDFLAGS) $^ -o \$@ \$(LDLIBS)
mkdir -p ../lib
ln -fs ../\$(DIR)/\$(LIB) ../lib/\$(LIB_SHORT)
" >> $mf
case "$OSL" in
darwin)
echo "
clean:
rm -f \$(LIB)* \$(OBJS) ../lib/\$(LIB) *~ include/*~
install: " >> $mf
if test "$__enable_debug" = "no" ; then
echo " strip --strip-unneeded \$(LIB)" >> $mf
fi
echo "
mkdir -p \$(DESTDIR)\$(LIBDIR)
install -m 755 \$(LIB) \$(DESTDIR)\$(LIBDIR)
ln -sf \$(LIB) \$(DESTDIR)\$(LIBDIR)/\$(LIB_SHORT)
install -m 644 \$(HDRS) \$(DESTDIR)\$(INCDIR)/qpxtool
uninstall:
rm -f \$(DESTDIR)\$(LIBDIR)/\$(LIB_SHORT)
rm -f \$(DESTDIR)\$(LIBDIR)/\$(LIB)
" >> $mf
;;
mingw32)
echo "
clean:
rm -f \$(LIB_SHORT)* \$(OBJS) ../lib/\$(LIB_SHORT) *~ include/*~
install:
mkdir -p \$(DESTDIR)\$(LIBDIR)
install -m 755 \$(LIB) \$(DESTDIR)\$(LIBDIR)
uninstall:
rm -f \$(DESTDIR)\$(LIBDIR)/\$(LIB)
" >> $mf
;;
*)
echo "
clean:
rm -f \$(LIB_SHORT)* \$(OBJS) ../lib/\$(LIB_SHORT) *~ include/*~
install: " >> $mf
if test "$__enable_debug" = "no" ; then
echo " strip --strip-unneeded \$(LIB)" >> $mf
fi
echo "
mkdir -p \$(DESTDIR)\$(LIBDIR)
install -m 755 \$(LIB) \$(DESTDIR)\$(LIBDIR)
ln -sf \$(LIB) \$(DESTDIR)\$(LIBDIR)/\$(LIB_SONAME)
ln -sf \$(LIB_SONAME) \$(DESTDIR)\$(LIBDIR)/\$(LIB_SHORT)
install -m 644 \$(HDRS) \$(DESTDIR)\$(INCDIR)/qpxtool
uninstall:
rm -f \$(DESTDIR)\$(LIBDIR)/\$(LIB_SHORT)
rm -f \$(DESTDIR)\$(LIBDIR)/\$(LIB_SONAME)
rm -f \$(DESTDIR)\$(LIBDIR)/\$(LIB)
" >> $mf
;;
esac
echo "
.PHONY: all clean install uninstall" >> $mf
}
create_makefile_plugin()
{
mf="plugins/Makefile.plugin"
echo "* $mf"
rm -f $mf
mkdir -p `dirname $mf`
case "$OSL" in
darwin)
PLUGIN_LDFLAGS=" -dynamiclib -Wl"
;;
*)
PLUGIN_LDFLAGS=" -shared -Wl,-soname,\$(LIB_SONAME)"
;;
esac
echo "
SRC = qscan_plugin qscan_cmd
HDRS = qscan_plugin.h
SRCS = \$(patsubst %,%.cpp, \$(SRC))
OBJS = \$(patsubst %.cpp,%.o,\$(SRCS))
LIB_SHORT = lib\$(LIBN)$__libsuff
LIB_SONAME = \$(LIB_SHORT)
LIB = \$(LIB_SHORT)
CPPFLAGS += -I. -I../../lib/include
LDFLAGS += $PLUGIN_LDFLAGS
LDLIBS += -L../../lib/lib -lqpxtransport -lqpxscan
all: \$(LIB)
\$(LIB): \$(OBJS)
\$(CXX) \$(CXXFLAGS) \$(LDFLAGS) $^ -o \$@ \$(LDLIBS)
mkdir -p ../lib
ln -fs ../\$(DIR)/\$(LIB) ../lib/\$(LIB_SHORT)
clean:
rm -f \$(LIB_SHORT) \$(OBJS) ../lib/\$(LIB_SHORT) *~ include/*~
install: " > $mf
if test "$__enable_debug" = "no" ; then
echo " strip --strip-unneeded \$(LIB_SHORT)" >> $mf
fi
echo "
mkdir -p \$(DESTDIR)\$(PLUGINDIR)
install -m 755 \$(LIB_SHORT) \$(DESTDIR)\$(PLUGINDIR)
uninstall:
rm -f \$(DESTDIR)\$(PLUGINDIR)/\$(LIB_SHORT)
.PHONY: all clean install uninstall
" >> $mf
}
show_help()
{
echo "--prefix=PREFIX set installation prefix"
echo "--bindir=BINDIR set path to install binaries"
echo "--sbindir=SBINDIR set path to install system binaries"
echo "--libdir=LIBDIR set path to install libraries"
echo "--mandir=MANDIR set path to install mans"
echo "--qmake=QMAKE_COMMAND set QT5 qmake command"
echo " default is to check following: $QMAKE5_NAMES"
echo "--disable-png disable PNG support in f1tattoo (auto)"
echo "--disable-gui don't compile GUI"
echo "--enable-debug build debug version"
echo "--disable-liteon-probe disable device probing in LiteOn plugin"
echo " enabled by default, but this code may cause some devices hang"
echo "--disable-internal-wt disable internal CD/DVD writing implementation and use cdrecord instead"
exit
}
#echo "Parsing parameters..."
for arg in $* ; do
case $arg in
--help|-h) show_help ;;
--prefix=*) __prefix=`echo $arg | cut -d '=' -f 2-` ;;
--bindir=*) bindir=`echo $arg | cut -d '=' -f 2-` ;;
--sbindir=*) sbindir=`echo $arg | cut -d '=' -f 2-` ;;
--libdir=*) libdir=`echo $arg | cut -d '=' -f 2-` ;;
--mandir=*) mandir=`echo $arg | cut -d '=' -f 2-` ;;
--target=*) target=`echo $arg | cut -d '=' -f 2-`
echo target: $target
__cc=${target}-gcc
__cxx=${target}-g++
__cross_compilation=yes
;;
--host=*) echo host: `echo $arg | cut -d '=' -f 2-` ;;
--qmake=*) __qmake=`echo $arg | cut -d '=' -f 2-` ;;
--disable-png) __enable_png="no" ;;
--disable-gui) __enable_gui="no" ;;
--enable-debug) __enable_debug="yes" ;QDEBUG="CONFIG+=debug" ;;
--disable-liteon-probe) __plugins_liteon_noprobe="yes" ; PLUGIN_DEFS+="-DPLUGINS_LITEON_NOPROBE" ;;
--disable-internal-wt) __wt_internal="no" ; DEFS+="-DDISABLE_INTERNAL_WT" ;;
*)
echo "invalid argument: $arg"
exit
;;
esac
done
echo -n "Checking OS... "
OS=`uname -s`
OSL=`uname -s | tr '[A-Z]' '[a-z]'`
echo $OS
echo -n "Cross-compilation... "
echo $__cross_compilation
if test "$__cross_compilation" = "yes" ; then
OS=$target
OSL=$target
fi
case $OSL in
*linux*)
OSDEFS="-fPIC"
OSLIBS_DL="-ldl"
OSLIBS_THREAD="-lpthread"
__defprefix="/usr/local"
;;
*gnu*)
OSDEFS="-fPIC"
OSLIBS_DL="-ldl"
OSLIBS_THREAD="-lpthread"
__defprefix="/usr"
;;
*darwin*)
OSDEFS="-D__unix -fPIC"
OSLIBS_THREAD="-lpthread"
OSLIBS_HW="-framework CoreFoundation -framework IOKit"
__defprefix="/usr"
__libsuff=".dylib"
;;
*freebsd*)
OSDEFS="-fPIC"
OSLIBS_THREAD="-lpthread"
OSLIBS_HW="-lcam"
__defprefix="/usr"
;;
*gnu/kfreebsd*)
OSDEFS="-fPIC"
OSLIBS_DL="-ldl"
OSLIBS_THREAD="-lpthread"
OSLIBS_HW="-lcam"
__defprefix="/usr"
;;
netbsd|openbsd)
OSDEFS="-fPIC"
OSLIBS_THREAD="-lpthread"
__defprefix="/usr"
;;
*mingw32*)
OSL="mingw32"
OSDEFS="-fPIC"
OSLIBS_THREAD="-lpthread"
OSLIBS_INET="-lws2_32 -lstdc++"
#__defprefix="/c/Progra~1/QPxTool"
__binsuff=".exe"
__libpref=""
__libsuff=".dll"
;;
*)
echo "OS not supported: $OS"
;;
esac
if test "$__prefix" = "" ; then
__prefix=$__defprefix
fi
echo -n "Checking machine arch... "
ARCH=`uname -m | tr '[A-Z]' '[a-z]' | tr ', /\\()"' ',//////' | tr ',/' ',-'`
BHOST=`uname -srv`
case "$OSL" in
linux|gnu/kfreebsd|gnu)
__bindir=$__prefix/bin
__sbindir=$__prefix/sbin
if test "$ARCH" = "x86_64" ; then
__libdir=$__prefix/lib64
else
__libdir=$__prefix/lib
fi
__plugindir=$__libdir/qpxtool
__incdir=$__prefix/include
__mandir=$__prefix/share/man
;;
netbsd|openbsd|freebsd|darwin)
__bindir=$__prefix/bin
__sbindir=$__prefix/sbin
__libdir=$__prefix/lib
__plugindir=$__libdir/qpxtool
__incdir=$__prefix/include
__mandir=$__prefix/share/man
;;
*mingw32*)
__bindir=$__prefix
__sbindir=$__prefix
__libdir=$__prefix
__plugindir=$__prefix/plugins
__incdir=$__prefix/include
__mandir=$__prefix/man
;;
*)
__bindir=$__prefix/bin
__sbindir=$__prefix/sbin
__libdir=$__prefix/lib
__plugindir=$__libdir/qpxtool
__incdir=$__prefix/include
__mandir=$__prefix/man
;;
esac
echo $ARCH
if test "$bindir" != "" ; then
__bindir=$bindir
fi
if test "$sbindir" != "" ; then
__sbindir=$sbindir
fi
if test "$libdir" != "" ; then
__libdir=$libdir
__plugindir=$__libdir/qpxtool
fi
if test "$mandir" != "" ; then
__mandir=$mandir
fi
check_make
check_compiler
check_offset64
if test "$__enable_png" = "yes" ; then
check_libpng
fi
if test "$__enable_gui" = "yes" ; then
ckeck_qt5
fi
echo ""
echo "** Creating Makefiles..."
create_makefile_top
create_makefile_lib
create_makefile_plugin
if test "$__enable_gui" = "yes" ; then
create_makefile_gui
fi
if test "$__cross_compilation" = "yes" ; then
copy_sources
fi
echo ""
echo "** install prefix: "$__prefix
echo "** debug version: "$__enable_debug
echo "** PNG support: "$__enable_png
echo "** build gui: "$__enable_gui
echo "** use internal WT: "$__wt_internal
echo ""
echo "Installation paths:"
echo " bin : "$__bindir
echo " sbin : "$__sbindir
echo " libs : "$__libdir
echo " plugins : "$__plugindir
echo " includes : "$__incdir"/qpxtool"
echo " man : "$__mandir
echo "** Configuration finished! run \`$MAKE\` now"
cleanup