aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-02-10 03:05:45 +0000
committerTimothy Gu <timothygu99@gmail.com>2014-02-10 03:05:45 +0000
commit346543d6f955f6f3aff4fb54f4e5c2d3829897e3 (patch)
tree0edf1451c1b3c9dad7c107b4b9684f62f7cd0e4c
parentbef2f446282ed498a800c35374b7e2c6abfcdb4c (diff)
downloaddlfcn-win32-346543d6f955f6f3aff4fb54f4e5c2d3829897e3.tar.gz
dlfcn-win32-346543d6f955f6f3aff4fb54f4e5c2d3829897e3.tar.bz2
dlfcn-win32-346543d6f955f6f3aff4fb54f4e5c2d3829897e3.zip
License stuff
-rwxr-xr-xconfigure19
-rw-r--r--dlfcn.c8
-rw-r--r--dlfcn.h6
-rw-r--r--test.c9
-rw-r--r--testdll.c6
5 files changed, 33 insertions, 15 deletions
diff --git a/configure b/configure
index 8b991ee..5b5e409 100755
--- a/configure
+++ b/configure
@@ -1,8 +1,25 @@
1#!/bin/sh 1#!/bin/sh
2# dlfcn-win32 configure script 2# dlfcn-win32 configure script
3# 3#
4# Parts copied from FFmpeg's configure 4# Parts copied from FFmpeg's configure. Original license was:
5# 5#
6# Copyright (c) 2000-2002 Fabrice Bellard
7# Copyright (c) 2005-2007 Diego Biurrun
8# Copyright (c) 2005-2007 Mans Rullgard
9#
10# dlfcn-win32 is free software; you can redistribute it and/or
11# modify it under the terms of the GNU Lesser General Public
12# License as published by the Free Software Foundation; either
13# version 2.1 of the License, or (at your option) any later version.
14
15# dlfcn-win32 is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18# Lesser General Public License for more details.
19#
20# You should have received a copy of the GNU Lesser General Public
21# License along with dlfcn-win32; if not, write to the Free Software
22# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6 23
7set_all(){ 24set_all(){
8 value=$1 25 value=$1
diff --git a/dlfcn.c b/dlfcn.c
index f7c1cb8..3f5032d 100644
--- a/dlfcn.c
+++ b/dlfcn.c
@@ -2,19 +2,19 @@
2 * dlfcn-win32 2 * dlfcn-win32
3 * Copyright (c) 2007 Ramiro Polla 3 * Copyright (c) 2007 Ramiro Polla
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * dlfcn-win32 is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public 6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version. 8 * version 2.1 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * dlfcn-win32 is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details. 13 * Lesser General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Lesser General Public 15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software 16 * License along with dlfcn-win32; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */ 18 */
19 19
20#include <windows.h> 20#include <windows.h>
diff --git a/dlfcn.h b/dlfcn.h
index deda9a8..413c0ab 100644
--- a/dlfcn.h
+++ b/dlfcn.h
@@ -2,18 +2,18 @@
2 * dlfcn-win32 2 * dlfcn-win32
3 * Copyright (c) 2007 Ramiro Polla 3 * Copyright (c) 2007 Ramiro Polla
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * dlfcn-win32 is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public 6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version. 8 * version 2.1 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * dlfcn-win32 is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details. 13 * Lesser General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Lesser General Public 15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software 16 * License along with dlfcn-win32; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */ 18 */
19 19
diff --git a/test.c b/test.c
index 1802721..3686981 100644
--- a/test.c
+++ b/test.c
@@ -1,19 +1,20 @@
1/* 1/*
2 * dlfcn-win32 2 * dlfcn-win32
3 * Copyright (c) 2007 Ramiro Polla 3 * Copyright (c) 2007-2009 Ramiro Polla
4 * Copyright (c) 2014 Tiancheng "Timothy" Gu
4 * 5 *
5 * This library is free software; you can redistribute it and/or 6 * dlfcn-win32 is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public 7 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version. 9 * version 2.1 of the License, or (at your option) any later version.
9 * 10 *
10 * This library is distributed in the hope that it will be useful, 11 * dlfcn-win32 is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details. 14 * Lesser General Public License for more details.
14 * 15 *
15 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software 17 * License along with dlfcn-win32; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */ 19 */
19 20
diff --git a/testdll.c b/testdll.c
index 851dc59..f378fb6 100644
--- a/testdll.c
+++ b/testdll.c
@@ -2,18 +2,18 @@
2 * dlfcn-win32 2 * dlfcn-win32
3 * Copyright (c) 2007 Ramiro Polla 3 * Copyright (c) 2007 Ramiro Polla
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * dlfcn-win32 is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public 6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version. 8 * version 2.1 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * dlfcn-win32 is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details. 13 * Lesser General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Lesser General Public 15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software 16 * License along with dlfcn-win32; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */ 18 */
19 19