Skip to content

Commit a5c3086

Browse files
committed
Removing obsolete locale dir. Added checks for curl/types.h
1 parent 037460d commit a5c3086

File tree

7 files changed

+16
-697
lines changed

7 files changed

+16
-697
lines changed

configure.in

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl
22
dnl $Id: configure.in 1719 2006-08-15 08:56:42Z karijes $
33
dnl
44
dnl Part of Equinox Desktop Environment (EDE).
5-
dnl Copyright (c) 2000-2008 EDE Authors.
5+
dnl Copyright (c) 2000-2012 EDE Authors.
66
dnl
77
dnl This program is licenced under terms of the
88
dnl GNU General Public Licence version 2 or newer.
@@ -184,6 +184,21 @@ if test -n "$CURL_CONFIG"; then
184184
CURL_CFLAGS=`$CURL_CONFIG --cflags`
185185
CURL_LIBS=`$CURL_CONFIG --libs`
186186
AC_DEFINE(HAVE_CURL, 1, [Define to 1 if you have curl library])
187+
188+
AC_LANG_SAVE
189+
AC_LANG_C
190+
AC_TRY_COMPILE([
191+
#include <curl/curl.h>
192+
#include <curl/types.h>
193+
],[
194+
CURL *curl;
195+
curl = curl_easy_init();
196+
],[have_curltypes_h=yes],[])
197+
AC_LANG_RESTORE
198+
199+
if test "$have_curltype_h" = "yes"; then
200+
AC_DEFINE(HAVE_CURLTYPES_H, 1, [Define to 1 if you have curl/types.h file])
201+
fi
187202
fi
188203

189204
dnl emits PTHREAD_CFLAGS and PTHREAD_LIBS

ede-timedate/locale/hu.po

-53
This file was deleted.

ede-timedate/locale/id.po

-146
This file was deleted.

ede-timedate/locale/messages.pot

-57
This file was deleted.

0 commit comments

Comments
 (0)