ObjOpenSSL  Check-in [087f5e8afa]

Overview
Comment:Add .fossil-settings
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 087f5e8afa5610315f2d70922e863f0e8ceb408eb2578cb5a6bd93d025f07db1
User & Date: js on 2020-09-12 00:14:33
Other Links: manifest | tags
Context
2020-10-02
23:58
ObjOpenSSL.oc: Include FRAMEWORK_LIBS check-in: a9dc759a9f user: js tags: trunk
2020-09-12
00:14
Add .fossil-settings check-in: 087f5e8afa user: js tags: trunk
2020-08-29
14:42
Fix compilation on Windows check-in: 5492e91aad user: js tags: trunk
Changes

Added .fossil-settings/clean-glob version [fb471bc0d8].































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
*.dylib
*.framework
*.o
*.so
*.so.*
*~
.deps
ObjOpenSSL.oc
aclocal.m4
autom4te.cache
buildsys.mk
config.log
config.status
configure
extra.mk

Added .fossil-settings/ignore-glob version [23d7224759].

































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
*.dylib
*.framework
*.o
*.so
*.so.*
*~
.deps
.git
ObjOpenSSL.oc
aclocal.m4
autom4te.cache
buildsys.mk
config.log
config.status
configure
extra.mk

Modified .gitignore from [82ac3050fb] to [fb471bc0d8].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
*.dylib
*.framework
*.o
*.so
*.so.*
*~
.deps
DerivedData
ObjOpenSSL.oc
aclocal.m4
autom4te.cache
buildsys.mk
config.log
config.status
configure
extra.mk







<








1
2
3
4
5
6
7

8
9
10
11
12
13
14
15
*.dylib
*.framework
*.o
*.so
*.so.*
*~
.deps

ObjOpenSSL.oc
aclocal.m4
autom4te.cache
buildsys.mk
config.log
config.status
configure
extra.mk

Modified configure.ac from [2461ea6b14] to [7261dbb9d1].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
AC_INIT(ObjOpenSSL, 0.1, js@nil.im)
AC_CONFIG_SRCDIR(src)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(build-aux/m4)

for i in configure.ac build-aux/m4/*; do
	AS_IF([test $i -nt configure], [
		AC_MSG_ERROR([$i is newer than configure! Run ./autogen.sh!])
	])
done

AC_CHECK_TOOL(OBJFW_CONFIG, objfw-config)
AS_IF([test x"$OBJFW_CONFIG" = x""], [
       AC_MSG_ERROR(You need ObjFW and objfw-config installed!)
])

test x"$OBJC" = x"" && OBJC="$($OBJFW_CONFIG --objc)"

AC_LANG([Objective C])
AC_PROG_OBJC
AC_PROG_OBJCPP













|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
AC_INIT(ObjOpenSSL, 0.1, js@nil.im)
AC_CONFIG_SRCDIR(src)
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(build-aux/m4)

for i in configure.ac build-aux/m4/*; do
	AS_IF([test $i -nt configure], [
		AC_MSG_ERROR([$i is newer than configure! Run ./autogen.sh!])
	])
done

AC_CHECK_TOOL(OBJFW_CONFIG, objfw-config)
AS_IF([test x"$OBJFW_CONFIG" = x""], [
	AC_MSG_ERROR(You need ObjFW and objfw-config installed!)
])

test x"$OBJC" = x"" && OBJC="$($OBJFW_CONFIG --objc)"

AC_LANG([Objective C])
AC_PROG_OBJC
AC_PROG_OBJCPP