optimization the spec
This commit is contained in:
parent
484b5a9c7f
commit
8cb8560a61
14
art_config.h
14
art_config.h
@ -1,14 +0,0 @@
|
||||
#ifndef LIBART_MULTILIB
|
||||
#define LIBART_MULTILIB
|
||||
|
||||
#include <bits/wordsize.h>
|
||||
|
||||
#if __WORDSIZE == 32
|
||||
# include "art_config-32.h"
|
||||
#elif __WORDSIZE == 64
|
||||
# include "art_config-64.h"
|
||||
#else
|
||||
# error "unexpected value for __WORDSIZE macro"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
@ -1,33 +0,0 @@
|
||||
--- libart_lgpl-2.3.17/libart-config.in.multilib 2006-07-27 18:02:06.000000000 -0400
|
||||
+++ libart_lgpl-2.3.17/libart-config.in 2006-07-27 18:02:11.000000000 -0400
|
||||
@@ -1,7 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
-prefix=@prefix@
|
||||
-exec_prefix=@exec_prefix@
|
||||
+includedir=`pkg-config --variable includedir libart-2.0`
|
||||
+libdir=`pkg-config --variable libdir libart-2.0`
|
||||
+prefix=`pkg-config --variable prefix libart-2.0`
|
||||
+exec_prefix=`pkg-config --variable exec_prefix libart-2.0`
|
||||
exec_prefix_set=no
|
||||
|
||||
usage="\
|
||||
@@ -36,15 +38,13 @@
|
||||
echo $exec_prefix
|
||||
;;
|
||||
--version)
|
||||
- echo @LIBART_VERSION@
|
||||
+ pkg-config --modversion libart-2.0
|
||||
;;
|
||||
--cflags)
|
||||
- includes=-I@includedir@/libart-2.0
|
||||
- echo $includes
|
||||
+ echo -I$includedir/libart-2.0
|
||||
;;
|
||||
--libs)
|
||||
- libdirs=-L@libdir@
|
||||
- echo $libdirs -lart_lgpl_2 -lm
|
||||
+ echo -L$libdir -lart_lgpl_2 -lm
|
||||
;;
|
||||
*)
|
||||
echo "${usage}" 1>&2
|
||||
Loading…
x
Reference in New Issue
Block a user