Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
tg
Commits
cde068c3
Commit
cde068c3
authored
Oct 05, 2015
by
V V
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated tgl
parent
c4ab8737
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
51 deletions
+2
-51
Makefile.tl-parser
Makefile.tl-parser
+1
-1
config.h.in
config.h.in
+0
-3
configure
configure
+0
-45
configure.ac
configure.ac
+0
-1
tgl
tgl
+1
-1
No files found.
Makefile.tl-parser
View file @
cde068c3
TL_PARSER_OBJECTS
=
${
OBJ
}
/tl-parser.o
${
OBJ
}
/tlc.o
${
OBJ
}
/crc32.o
TL_PARSER_OBJECTS
=
${
OBJ
}
/tl-parser.o
${
OBJ
}
/tlc.o
${TL_PARSER_OBJECTS}
:
${OBJ}/%.o: ${srcdir}/tgl/tl-parser/%.c | create_dirs
${TL_PARSER_OBJECTS}
:
${OBJ}/%.o: ${srcdir}/tgl/tl-parser/%.c | create_dirs
${
CC
}
${
INCLUDE
}
${
COMPILE_FLAGS
}
-iquote
${
srcdir
}
/tgl/tl-parser
-c
-MP
-MD
-MF
${
DEP
}
/
$*
.d
-MQ
${
OBJ
}
/
$*
.o
-o
$@
$<
${
CC
}
${
INCLUDE
}
${
COMPILE_FLAGS
}
-iquote
${
srcdir
}
/tgl/tl-parser
-c
-MP
-MD
-MF
${
DEP
}
/
$*
.d
-MQ
${
OBJ
}
/
$*
.o
-o
$@
$<
...
...
config.h.in
View file @
cde068c3
...
@@ -42,9 +42,6 @@
...
@@ -42,9 +42,6 @@
/* Define to 1 if you have the `jansson' library (-ljansson). */
/* Define to 1 if you have the `jansson' library (-ljansson). */
#undef HAVE_LIBJANSSON
#undef HAVE_LIBJANSSON
/* Define to 1 if you have the `m' library (-lm). */
#undef HAVE_LIBM
/* Define to 1 if you have `z' library (-lz) */
/* Define to 1 if you have `z' library (-lz) */
#undef HAVE_LIBZ
#undef HAVE_LIBZ
...
...
configure
View file @
cde068c3
...
@@ -3500,51 +3500,6 @@ LDFLAGS="$LDFLAGS -L/usr/local/lib"
...
@@ -3500,51 +3500,6 @@ LDFLAGS="$LDFLAGS -L/usr/local/lib"
# Checks for libraries.
# Checks for libraries.
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for sqrt in -lm"
>
&5
$as_echo_n
"checking for sqrt in -lm... "
>
&6
;
}
if
${
ac_cv_lib_m_sqrt
+
:
}
false
;
then
:
$as_echo_n
"(cached) "
>
&6
else
ac_check_lib_save_LIBS
=
$LIBS
LIBS
=
"-lm
$LIBS
"
cat
confdefs.h -
<<
_ACEOF
>conftest.
$ac_ext
/* end confdefs.h. */
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
#ifdef __cplusplus
extern "C"
#endif
char sqrt ();
int
main ()
{
return sqrt ();
;
return 0;
}
_ACEOF
if
ac_fn_c_try_link
"
$LINENO
"
;
then
:
ac_cv_lib_m_sqrt
=
yes
else
ac_cv_lib_m_sqrt
=
no
fi
rm
-f
core conftest.err conftest.
$ac_objext
\
conftest
$ac_exeext
conftest.
$ac_ext
LIBS
=
$ac_check_lib_save_LIBS
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: result:
$ac_cv_lib_m_sqrt
"
>
&5
$as_echo
"
$ac_cv_lib_m_sqrt
"
>
&6
;
}
if
test
"x
$ac_cv_lib_m_sqrt
"
=
xyes
;
then
:
cat
>>
confdefs.h
<<
_ACEOF
#define HAVE_LIBM 1
_ACEOF
LIBS
=
"-lm
$LIBS
"
fi
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for library containing clock_gettime"
>
&5
{
$as_echo
"
$as_me
:
${
as_lineno
-
$LINENO
}
: checking for library containing clock_gettime"
>
&5
$as_echo_n
"checking for library containing clock_gettime... "
>
&6
;
}
$as_echo_n
"checking for library containing clock_gettime... "
>
&6
;
}
if
${
ac_cv_search_clock_gettime
+
:
}
false
;
then
:
if
${
ac_cv_search_clock_gettime
+
:
}
false
;
then
:
...
...
configure.ac
View file @
cde068c3
...
@@ -17,7 +17,6 @@ CPPFLAGS="$CPPFLAGS -I/usr/local/include"
...
@@ -17,7 +17,6 @@ CPPFLAGS="$CPPFLAGS -I/usr/local/include"
LDFLAGS="$LDFLAGS -L/usr/local/lib"
LDFLAGS="$LDFLAGS -L/usr/local/lib"
# Checks for libraries.
# Checks for libraries.
AC_CHECK_LIB([m], [sqrt])
AC_SEARCH_LIBS([clock_gettime], [rt])
AC_SEARCH_LIBS([clock_gettime], [rt])
AC_SEARCH_LIBS([backtrace], [execinfo])
AC_SEARCH_LIBS([backtrace], [execinfo])
AC_CHECK_LIB([event], [event_base_new], [], [AC_MSG_ERROR([no libevent found])])
AC_CHECK_LIB([event], [event_base_new], [], [AC_MSG_ERROR([no libevent found])])
...
...
tgl
@
e0925523
Subproject commit
22693cd6ff8cf54f441ac84a1b514cc2392d7771
Subproject commit
e092552313bcb97755c550552baa62b531b95203
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment